Skip to content

Commit

Permalink
Update plugins/modules/ec2_eni.py
Browse files Browse the repository at this point in the history
Co-authored-by: Felix Fontein <[email protected]>
  • Loading branch information
tremble and felixfontein authored Oct 4, 2021
1 parent 6eff75e commit 5a621ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ec2_eni.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def wait_for(function_pointer, *args):

def _generate_tag_specifications(tags):
tag_list = ansible_dict_to_boto3_tag_list(tags)
return list(dict(ResourceType="network-interface", Tags=tag_list))
return [dict(ResourceType="network-interface", Tags=tag_list)]


def create_eni(connection, vpc_id, module):
Expand Down

0 comments on commit 5a621ab

Please sign in to comment.