Route53 fix - forcing zone_in, record_in to lower case

Fixed the .tolower to .lower() for correct syntax (copied change from older notes).
pull/18777/head
Phillip Holmes 10 years ago committed by Matt Clay
parent 23668e41b0
commit 0d3b144eb2

@ -180,9 +180,9 @@ def main():
module = AnsibleModule(argument_spec=argument_spec)
command_in = module.params.get('command')
zone_in = module.params.get('zone')
zone_in = module.params.get('zone').lower()
ttl_in = module.params.get('ttl')
record_in = module.params.get('record')
record_in = module.params.get('record').lower()
type_in = module.params.get('type')
value_in = module.params.get('value')
retry_interval_in = module.params.get('retry_interval')

Loading…
Cancel
Save