mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-06 00:14:02 -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
|
@ -133,7 +133,7 @@ EXAMPLES = '''
|
|||
- ec2_vol:
|
||||
instance: "{{ item.id }} "
|
||||
volume_size: 5
|
||||
with_items: ec2.instances
|
||||
with_items: "{{ ec2.instances }}"
|
||||
register: ec2_vol
|
||||
|
||||
# Example: Launch an instance and then add a volume if not already attached
|
||||
|
@ -154,7 +154,7 @@ EXAMPLES = '''
|
|||
instance: "{{ item.id }}"
|
||||
name: my_existing_volume_Name_tag
|
||||
device_name: /dev/xvdf
|
||||
with_items: ec2.instances
|
||||
with_items: "{{ ec2.instances }}"
|
||||
register: ec2_vol
|
||||
|
||||
# Remove a volume
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue