Fixes route53_facts to use max_items parameter with record_sets query.

pull/18777/head
Gabriel Burkholder 9 years ago committed by Matt Clay
parent a1fdff4c97
commit 6a202054f8

@ -316,6 +316,9 @@ def record_sets_details(client, module):
else:
module.fail_json(msg="Hosted Zone Id is required")
if module.params.get('max_items'):
params['MaxItems'] = module.params.get('max_items')
if module.params.get('start_record_name'):
params['StartRecordName'] = module.params.get('start_record_name')

Loading…
Cancel
Save