[cloud] make ec2 paging() more functional and add paging to ec2_lc_facts (#27355)

This commit is contained in:
Sloane Hertel 2017-08-01 15:06:46 -04:00 committed by Ryan Brown
parent ad2c1e1838
commit d8eccdda3a
2 changed files with 11 additions and 4 deletions

View file

@ -170,6 +170,8 @@ try:
except ImportError:
HAS_BOTO3 = False
from ansible.module_utils.ec2 import paging
def list_launch_configs(connection, module):
@ -180,7 +182,8 @@ def list_launch_configs(connection, module):
sort_end = module.params.get('sort_end')
try:
launch_configs = connection.describe_launch_configurations(LaunchConfigurationNames=launch_config_name)
launch_configs = {'LaunchConfigurations': paging(pause=0, marker_property='NextToken', result_key='LaunchConfigurations')
(connection.describe_launch_configurations)(LaunchConfigurationNames=launch_config_name)}
except ClientError as e:
module.fail_json(msg=e.message)