mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Add more example on how to use module ec2_tags to list tags on an ins… (#3530)
* Add more example on how to use module ec2_tags to list tags on an instance * Add more example on how to use module ec2_tags to list tags on an instance
This commit is contained in:
@@ -107,6 +107,22 @@ tasks:
|
||||
with_subelements:
|
||||
- ec2_vol.results
|
||||
- volumes
|
||||
|
||||
# Playbook example of listing tags on an instance
|
||||
tasks:
|
||||
- name: get ec2 facts
|
||||
action: ec2_facts
|
||||
|
||||
- name: list tags on an instance
|
||||
ec2_tag:
|
||||
region: "{{ ansible_ec2_placement_region }}"
|
||||
resource: "{{ ansible_ec2_instance_id }}"
|
||||
state: list
|
||||
register: ec2_tags
|
||||
|
||||
- name: list tags, such as Name, env if exist
|
||||
shell: echo {{ ec2_tags.tags.Name }} {{ ec2_tags.tags.env }}
|
||||
|
||||
'''
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user