Fix issue #1156
Fix as suggested in the issue. https://github.com/ansible/ansible-modules-core/issues/1156pull/4420/head
parent
4f42e752e6
commit
8715ce07ae
|
@ -208,7 +208,7 @@ def main():
|
||||||
|
|
||||||
command_in = module.params.get('command')
|
command_in = module.params.get('command')
|
||||||
zone_in = module.params.get('zone').lower()
|
zone_in = module.params.get('zone').lower()
|
||||||
ttl_in = module.params.get('ttl')
|
ttl_in = int(module.params.get('ttl'))
|
||||||
record_in = module.params.get('record').lower()
|
record_in = module.params.get('record').lower()
|
||||||
type_in = module.params.get('type')
|
type_in = module.params.get('type')
|
||||||
value_in = module.params.get('value')
|
value_in = module.params.get('value')
|
||||||
|
|
Loading…
Reference in New Issue