mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fixes route53_facts to use max_items parameter with record_sets query.
This commit is contained in:
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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user