Not so much a question as a comment.
I would like to tag the ENIs I create with Ansible.
ENI’s certainly support tags, but the ec2_eni module doesn’t have a “tags” attribute.
I was able to tag the interfaces using the ec2_tag module, but it seems an odd omission not to be able to tag on creation.
- ec2_tag:
region: “{{ region }}”
resource: ‘{{ item }}’
state: present
tags:
Name: “{{ group_name + ‘-’ + server_name + ‘-primary-eni’ }}”
GroupName: “{{ group_name }}”
with_items: “{{ eni_server_primary_facts.network_interfaces[0].id }}”
Regards, K.