mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Fix bare variable references in docs
This commit is contained in:
committed by
Matt Clay
parent
c6b08ca623
commit
a8d80f7165
@@ -45,7 +45,7 @@ EXAMPLES = '''
|
||||
- action:
|
||||
module: debug
|
||||
msg: "{{ item.dns_name }}"
|
||||
with_items: elb_facts.elbs
|
||||
with_items: "{{ elb_facts.elbs }}"
|
||||
|
||||
# Gather facts about a particular ELB
|
||||
- action:
|
||||
@@ -68,7 +68,7 @@ EXAMPLES = '''
|
||||
- action:
|
||||
module: debug
|
||||
msg: "{{ item.dns_name }}"
|
||||
with_items: elb_facts.elbs
|
||||
with_items: "{{ elb_facts.elbs }}"
|
||||
|
||||
'''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user