From 957d0a79c05c3c3200b8905d24d8fe5c3ddae859 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 19 Jul 2013 09:40:53 -0400 Subject: [PATCH] Legacy variable usage removed. --- cloud/ec2_vol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cloud/ec2_vol b/cloud/ec2_vol index bc9b9b94e72..c9116122859 100644 --- a/cloud/ec2_vol +++ b/cloud/ec2_vol @@ -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 '''