Merge pull request #30 from PhillipHolmes/devel
Route53 fix - forcing zone_in, record_in to lower case
This commit is contained in:
commit
c633829f64
1 changed files with 2 additions and 2 deletions
|
@ -181,9 +181,9 @@ def main():
|
||||||
module = AnsibleModule(argument_spec=argument_spec)
|
module = AnsibleModule(argument_spec=argument_spec)
|
||||||
|
|
||||||
command_in = module.params.get('command')
|
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')
|
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')
|
type_in = module.params.get('type')
|
||||||
value_in = module.params.get('value')
|
value_in = module.params.get('value')
|
||||||
retry_interval_in = module.params.get('retry_interval')
|
retry_interval_in = module.params.get('retry_interval')
|
||||||
|
|
Loading…
Reference in a new issue