From 5a8a0edeb2d10ee505cbb93df807a4aa100e2f69 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Fri, 19 Feb 2021 15:01:11 +0100 Subject: [PATCH] fix missing default value for throttle parameter --- plugins/modules/corenetworks_dns.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/modules/corenetworks_dns.py b/plugins/modules/corenetworks_dns.py index fbe6cc6..551ca2b 100644 --- a/plugins/modules/corenetworks_dns.py +++ b/plugins/modules/corenetworks_dns.py @@ -194,6 +194,7 @@ def main(): ttl=dict(type="int", default=3600), value=dict(type="str"), solo=dict(type="bool", default=False), + throttle=dict(type="int", default=2), state=dict(type="str", choices=["present", "absent"], default="present"), ), required_together=[["record", "value"]],