1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Replacing old "with_items:" by "loop:" (#44303)

Replacing old "with_items:" by "loop:"

+label: docsite_pr
This commit is contained in:
Petr Ruzicka 2018-08-21 18:03:46 +02:00 committed by Sam Doran
parent 2bf6507c44
commit a49d1b7b91

View file

@ -153,7 +153,7 @@ EXAMPLES = '''
add_host: add_host:
hostname: "{{ item['ips'][0].public_ip }}" hostname: "{{ item['ips'][0].public_ip }}"
groupname: azure_vms groupname: azure_vms
with_items: "{{ azure.deployment.instances }}" loop: "{{ azure.deployment.instances }}"
- hosts: azure_vms - hosts: azure_vms
user: devopscle user: devopscle