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
reviewable/pr18780/r1
Bill W 9 years ago committed by Brian Coca
parent 11892d5f8a
commit 0f26d71715

@ -103,6 +103,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 }}
'''

Loading…
Cancel
Save