From d520ffeb573f55043da65f7592db3d52d89fdf94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20K=C3=A4mmerling?= Date: Thu, 9 Apr 2020 13:11:26 +0200 Subject: [PATCH] Fix failing hcloud_route test --- plugins/modules/hcloud_route.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/hcloud_route.py b/plugins/modules/hcloud_route.py index b5fe3b2..25ede26 100644 --- a/plugins/modules/hcloud_route.py +++ b/plugins/modules/hcloud_route.py @@ -172,8 +172,8 @@ class AnsibleHcloudRoute(Hcloud): return AnsibleModule( argument_spec=dict( network={"type": "str", "required": True}, - destination={"type": "str", "required": True}, gateway={"type": "str", "required": True}, + destination={"type": "str", "required": True}, state={ "choices": ["absent", "present"], "default": "present",