Fix bare variable references in docs (#5554)

This commit is contained in:
Andrew Gaffney 2016-11-10 12:47:59 -07:00 committed by Matt Clay
parent e45e25c257
commit 2ef59561ba
9 changed files with 10 additions and 10 deletions

View file

@ -107,7 +107,7 @@ EXAMPLES = '''
register: ec2
- name: associate new elastic IPs with each of the instances
ec2_eip: "device_id={{ item }}"
with_items: ec2.instance_ids
with_items: "{{ ec2.instance_ids }}"
- name: allocate a new elastic IP inside a VPC in us-west-2
ec2_eip: region=us-west-2 in_vpc=yes
register: eip