with_items should not be used any more - using loop instead (#47364)

This commit is contained in:
Petr Ruzicka 2018-12-14 18:13:32 +01:00 committed by ansibot
parent 0957b37721
commit 1c8f5c7db5
4 changed files with 5 additions and 5 deletions

View file

@ -54,7 +54,7 @@ EXAMPLES = '''
password: "{{ site_password }}"
cluster_uuid: "{{ vsan_cluster.cluster_uuid }}"
delegate_to: localhost
with_items: "{{ groups['esxi'][1:] }}"
loop: "{{ groups['esxi'][1:] }}"
'''
try: