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

This commit is contained in:
Petr Ruzicka 2018-10-19 21:32:58 +02:00 committed by Tim Rupp
commit 0bb3205dee
3 changed files with 3 additions and 3 deletions

View file

@ -84,7 +84,7 @@ EXAMPLES = r'''
peer_hostname: "{{ item.inventory_hostname }}"
peer_user: "{{ item.bigip_username }}"
peer_password: "{{ item.bigip_password }}"
with_items: hostvars
loop: hostvars
when: inventory_hostname in groups['master']
delegate_to: localhost
'''