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

Legacy variable usage removed.

This commit is contained in:
Michael DeHaan 2013-07-19 09:40:53 -04:00
parent 131c8489d4
commit 764504b578

View file

@ -67,16 +67,16 @@ EXAMPLES = '''
# Playbook example combined with instance launch
- local_action:
module: ec2
keypair: $keypair
image: $image
keypair: "{{ keypair }}"
image: "{{ image }}"
wait: yes
count: 3
register: ec2
- local_action:
module: ec2_vol
instance: ${item.id}
instance: "{{ item.id }} "
volume_size: 5
with_items: ${ec2.instances}
with_items: ec2.instances
register: ec2_vol
'''