1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #8023 from btashton/patch-1

ansible_ec2_instance-id key incorrect
This commit is contained in:
James Cammarata 2014-07-05 00:13:01 -05:00
commit 088552310b

View file

@ -266,7 +266,7 @@ Example 4
- debug: var=hostvars[inventory_hostname] - debug: var=hostvars[inventory_hostname]
# just show the instance-id # just show the instance-id
- debug: msg="{{ hostvars[inventory_hostname]['ansible_ec2_instance-id'] }}" - debug: msg="{{ hostvars[inventory_hostname]['ansible_ec2_instance_id'] }}"
# Using the instanceid, call the ec2 module # Using the instanceid, call the ec2 module
@ -288,7 +288,7 @@ Example 4
region={{ region }} region={{ region }}
instance_ids={{ item }} instance_ids={{ item }}
wait=true wait=true
with_items: hostvars[inventory_hostname]['ansible_ec2_instance-id'] with_items: hostvars[inventory_hostname]['ansible_ec2_instance_id']
.. note:: more examples of this are pending. You may also be interested in the ec2_ami module for taking AMIs of running instances. .. note:: more examples of this are pending. You may also be interested in the ec2_ami module for taking AMIs of running instances.