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
pull/18777/head
Stepan Stipl 9 years ago committed by Matt Clay
parent 699a570f8b
commit 9bba1b66c5

@ -177,7 +177,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