[cloud] elb_target_group_facts.pyFix tags being snaked (#25742)
This commit is contained in:
parent
44687bb917
commit
6d34ce3f2a
1 changed files with 4 additions and 1 deletions
|
@ -233,11 +233,14 @@ def list_target_groups(connection, module):
|
|||
# Get the attributes and tags for each target group
|
||||
for target_group in target_groups['TargetGroups']:
|
||||
target_group.update(get_target_group_attributes(connection, module, target_group['TargetGroupArn']))
|
||||
target_group['tags'] = get_target_group_tags(connection, module, target_group['TargetGroupArn'])
|
||||
|
||||
# Turn the boto3 result in to ansible_friendly_snaked_names
|
||||
snaked_target_groups = [camel_dict_to_snake_dict(target_group) for target_group in target_groups['TargetGroups']]
|
||||
|
||||
# Get tags for each target group
|
||||
for snaked_target_group in snaked_target_groups:
|
||||
snaked_target_group['tags'] = get_target_group_tags(connection, module, snaked_target_group['target_group_arn'])
|
||||
|
||||
module.exit_json(target_groups=snaked_target_groups)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue