mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07:00
Fix bare variable references in docs (#5554)
This commit is contained in:
parent
e45e25c257
commit
2ef59561ba
9 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue