Commit 764504b5 by Michael DeHaan

Legacy variable usage removed.

parent 131c8489
......@@ -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
'''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment