[aws][docs] Replace uses of now-obsolete with_items with loop (#47164)

This commit is contained in:
Petr Ruzicka 2018-10-17 18:35:31 +02:00 committed by Ryan Brown
commit df57a3fc7a
14 changed files with 23 additions and 23 deletions

View file

@ -50,7 +50,7 @@ EXAMPLES = '''
- action:
module: debug
msg: "{{ item.dns_name }}"
with_items: "{{ elb_facts.elbs }}"
loop: "{{ elb_facts.elbs }}"
# Gather facts about a particular ELB
- action:
@ -73,7 +73,7 @@ EXAMPLES = '''
- action:
module: debug
msg: "{{ item.dns_name }}"
with_items: "{{ elb_facts.elbs }}"
loop: "{{ elb_facts.elbs }}"
'''