From f4c4c26aabcfe2ec4b7b85c615e33794bbf69607 Mon Sep 17 00:00:00 2001 From: Tim Gerla Date: Sat, 7 Dec 2013 10:25:19 -0800 Subject: [PATCH] Fix with_items variable syntax in ec2 example --- language_features/eucalyptus-ec2.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language_features/eucalyptus-ec2.yml b/language_features/eucalyptus-ec2.yml index 796b203..0712196 100644 --- a/language_features/eucalyptus-ec2.yml +++ b/language_features/eucalyptus-ec2.yml @@ -28,17 +28,17 @@ - name: Add new instances to host group local_action: add_host hostname={{item.public_ip}} groupname=deploy - with_items: ${ec2.instances} + with_items: ec2.instances - name: Wait for the instances to boot by checking the ssh port local_action: wait_for host={{item.public_dns_name}} port=22 delay=60 timeout=320 state=started - with_items: ${ec2.instances} + with_items: ec2.instances # Use the ec2_vol module to create volumes for attachment to each instance. Use with_items to attach to each instance (by returned id) launched previously. - name: Create a volume and attach local_action: ec2_vol volume_size=20 instance={{item.id}} - with_items: ${ec2.instances} + with_items: ec2.instances # This play targets the new host group