1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

Fix failing hcloud_route test

This commit is contained in:
Lukas Kämmerling 2020-04-09 13:11:26 +02:00
parent 79bdf2d1a0
commit d520ffeb57

View file

@ -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",