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
This commit is contained in:
Stepan Stipl 2016-01-07 18:06:35 +00:00 committed by Matt Clay
parent 699a570f8b
commit 9bba1b66c5

View file

@ -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")