[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

@ -381,14 +381,14 @@ EXAMPLES = '''
add_host:
hostname: "{{ item.public_ip }}"
groupname: launched
with_items: "{{ ec2.instances }}"
loop: "{{ ec2.instances }}"
- name: Wait for SSH to come up
delegate_to: "{{ item.public_dns_name }}"
wait_for_connection:
delay: 60
timeout: 320
with_items: "{{ ec2.instances }}"
loop: "{{ ec2.instances }}"
- name: Configure instance(s)
hosts: launched