Fix: route53_facts hosted_zone_id boto error

Boto is expecting parameter called "Id", not "HostedZoneId".
See
http://boto3.readthedocs.org/en/latest/reference/services/route53.html#Route53.Client.get_hosted_zone

Fixes ansible/ansible-modules-extras/#1465
reviewable/pr18780/r1
Stepan Stipl 9 years ago
parent 17b4efba22
commit 6bad06e827

@ -178,7 +178,7 @@ def get_hosted_zone(client, module):
params = dict()
if module.params.get('hosted_zone_id'):
params['HostedZoneId'] = module.params.get('hosted_zone_id')
params['Id'] = module.params.get('hosted_zone_id')
else:
module.fail_json(msg="Hosted Zone Id is required")

Loading…
Cancel
Save