Skip to content

Commit

Permalink
Refactor ec2_eni tagging code (ansible-collections#522)
Browse files Browse the repository at this point in the history
Refactor ec2_eni tagging code

SUMMARY
Use the shared ec2 tagging code for tagging ENIs.
Also fixes the test instability (caused by a race condition with VM states)
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
ec2_eni
ADDITIONAL INFORMATION

Reviewed-by: Felix Fontein <None>
Reviewed-by: Alina Buzachis <None>
Reviewed-by: None <None>
  • Loading branch information
tremble authored and alinabuzachis committed Oct 8, 2021
1 parent ee22c8c commit 024cd30
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 57 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/522-ec2_eni-tagging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- ec2_eni - use module_util helper for tagging ENIs (https://github.com/ansible-collections/amazon.aws/pull/522).
5 changes: 5 additions & 0 deletions changelogs/fragments/531-use_tags_handlers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
minor_changes:
- ec2_vpc_nat_gateway - use module_util helpers for tagging (https://github.com/ansible-collections/amazon.aws/pull/531).
- ec2_vpc_igw - use module_util helpers for tagging (https://github.com/ansible-collections/amazon.aws/pull/531).
- ec2_vpc_dhcp_option - use module_util helpers for tagging (https://github.com/ansible-collections/amazon.aws/pull/531).
- ec2_vpc_endpoint - use module_util helpers for tagging (https://github.com/ansible-collections/amazon.aws/pull/531).
90 changes: 35 additions & 55 deletions plugins/modules/ec2_eni.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@
from ..module_utils.core import AnsibleAWSModule
from ..module_utils.core import is_boto3_error_code
from ..module_utils.ec2 import AWSRetry
from ..module_utils.ec2 import ansible_dict_to_boto3_tag_list
from ..module_utils.ec2 import get_ec2_security_group_ids_from_names
from ..module_utils.ec2 import boto3_tag_list_to_ansible_dict
from ..module_utils.ec2 import compare_aws_tags
from ..module_utils.tagging import boto3_tag_list_to_ansible_dict
from ..module_utils.tagging import boto3_tag_specifications
from ..module_utils.ec2 import ensure_ec2_tags
from ..module_utils.waiters import get_waiter


Expand Down Expand Up @@ -336,17 +336,11 @@ def get_eni_info(interface):
}

if "TagSet" in interface:
tags = {}
name = None
for tag in interface["TagSet"]:
tags[tag["Key"]] = tag["Value"]
if tag["Key"] == "Name":
name = tag["Value"]
tags = boto3_tag_list_to_ansible_dict(interface["TagSet"])
if "Name" in tags:
interface_info["name"] = tags["Name"]
interface_info["tags"] = tags

if name is not None:
interface_info["name"] = name

if "Attachment" in interface:
interface_info['attachment'] = {
'attachment_id': interface["Attachment"].get("AttachmentId"),
Expand Down Expand Up @@ -429,9 +423,12 @@ def create_eni(connection, vpc_id, module):
secondary_private_ip_addresses = module.params.get("secondary_private_ip_addresses")
secondary_private_ip_address_count = module.params.get("secondary_private_ip_address_count")
changed = False
tags = module.params.get("tags")

tags = module.params.get("tags") or dict()
name = module.params.get("name")
purge_tags = module.params.get("purge_tags")
# Make sure that the 'name' parameter sets the Name tag
if name:
tags['Name'] = name

try:
args = {"SubnetId": subnet_id}
Expand All @@ -441,6 +438,9 @@ def create_eni(connection, vpc_id, module):
args["Description"] = description
if len(security_groups) > 0:
args["Groups"] = security_groups
if tags:
args["TagSpecifications"] = boto3_tag_specifications(tags, types='network-interface')

eni_dict = connection.create_network_interface(aws_retry=True, **args)
eni = eni_dict["NetworkInterface"]
# Once we have an ID make sure we're always modifying the same object
Expand Down Expand Up @@ -483,8 +483,6 @@ def create_eni(connection, vpc_id, module):
connection.delete_network_interface(aws_retry=True, NetworkInterfaceId=eni_id)
raise

manage_tags(eni, name, tags, purge_tags, connection)

# Refresh the eni data
eni = describe_eni(connection, module, eni_id)
changed = True
Expand Down Expand Up @@ -633,7 +631,7 @@ def modify_eni(connection, module, eni):
changed |= detach_eni(connection, eni, module)
get_waiter(connection, 'network_interface_available').wait(NetworkInterfaceIds=[eni_id])

changed |= manage_tags(eni, name, tags, purge_tags, connection)
changed |= manage_tags(connection, module, eni, name, tags, purge_tags)

except (botocore.exceptions.ClientError, botocore.exceptions.BotoCoreError) as e:
module.fail_json_aws(e, "Failed to modify eni {0}".format(eni_id))
Expand All @@ -642,6 +640,16 @@ def modify_eni(connection, module, eni):
module.exit_json(changed=changed, interface=get_eni_info(eni))


def _wait_for_detach(connection, module, eni_id):
try:
get_waiter(connection, 'network_interface_available').wait(
NetworkInterfaceIds=[eni_id],
WaiterConfig={'Delay': 5, 'MaxAttempts': 80},
)
except botocore.exceptions.WaiterError as e:
module.fail_json_aws(e, "Timeout waiting for ENI {0} to detach".format(eni_id))


def delete_eni(connection, module):

eni = uniquely_find_eni(connection, module)
Expand All @@ -657,10 +665,9 @@ def delete_eni(connection, module):
connection.detach_network_interface(
aws_retry=True,
AttachmentId=eni["Attachment"]["AttachmentId"],
Force=True
Force=True,
)
# Wait to allow detachment to finish
get_waiter(connection, 'network_interface_available').wait(NetworkInterfaceIds=[eni_id])
_wait_for_detach(connection, module, eni_id)
connection.delete_network_interface(aws_retry=True, NetworkInterfaceId=eni_id)
changed = True
else:
Expand All @@ -686,10 +693,7 @@ def detach_eni(connection, eni, module):
AttachmentId=eni["Attachment"]["AttachmentId"],
Force=force_detach,
)
get_waiter(connection, 'network_interface_available').wait(
NetworkInterfaceIds=[eni_id],
WaiterConfig={'Delay': 5, 'MaxAttempts': 80},
)
_wait_for_detach(connection, module, eni_id)
return True

return False
Expand Down Expand Up @@ -786,42 +790,18 @@ def _get_vpc_id(connection, module, subnet_id):
module.fail_json_aws(e, "Failed to get vpc_id for {0}".format(subnet_id))


def manage_tags(eni, name, new_tags, purge_tags, connection):
changed = False

if "TagSet" in eni:
old_tags = boto3_tag_list_to_ansible_dict(eni['TagSet'])
elif new_tags:
old_tags = {}
else:
# No new tags and nothing in TagSet
return False

def manage_tags(connection, module, eni, name, tags, purge_tags):
# Do not purge tags unless tags is not None
if new_tags is None:
if tags is None:
purge_tags = False
new_tags = {}
tags = {}

if name:
new_tags['Name'] = name
tags['Name'] = name

tags_to_set, tags_to_delete = compare_aws_tags(
old_tags, new_tags,
purge_tags=purge_tags,
)
if tags_to_set:
connection.create_tags(
aws_retry=True,
Resources=[eni['NetworkInterfaceId']],
Tags=ansible_dict_to_boto3_tag_list(tags_to_set))
changed |= True
if tags_to_delete:
delete_with_current_values = dict((k, old_tags.get(k)) for k in tags_to_delete)
connection.delete_tags(
aws_retry=True,
Resources=[eni['NetworkInterfaceId']],
Tags=ansible_dict_to_boto3_tag_list(delete_with_current_values))
changed |= True
eni_id = eni['NetworkInterfaceId']

changed = ensure_ec2_tags(connection, module, eni_id, tags=tags, purge_tags=purge_tags)
return changed


Expand Down
3 changes: 1 addition & 2 deletions tests/integration/targets/ec2_eni/aliases
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
unstable

cloud/aws

ec2_eni_info
16 changes: 16 additions & 0 deletions tests/integration/targets/ec2_eni/tasks/test_attachment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# ============================================================
# If we don't stop the instances they can get stuck "detaching"
- name: Ensure test instances are stopped
ec2_instance:
state: stopped
instance_ids:
- "{{ instance_id_1 }}"
- "{{ instance_id_2 }}"
wait: True

- name: attach the network interface to instance 1
ec2_eni:
instance_id: "{{ instance_id_1 }}"
Expand Down Expand Up @@ -166,6 +175,13 @@
- '"currently in use" in result.msg'

# ============================================================
- name: Ensure test instances is running (will block non-forced detachment)
ec2_instance:
state: running
instance_ids:
- "{{ instance_id_2 }}"
wait: True

- name: delete an attached network interface with force_detach
ec2_eni:
force_detach: True
Expand Down

0 comments on commit 024cd30

Please sign in to comment.