Fix bare variable references in docs

This commit is contained in:
Andrew Gaffney
2016-11-10 10:12:03 -07:00
committed by Matt Clay
parent c6b08ca623
commit a8d80f7165
11 changed files with 17 additions and 17 deletions

View File

@@ -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 }}"
'''