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

with_items is obsolete - using loop instead (#46806)

This commit is contained in:
Petr Ruzicka 2018-10-16 22:54:09 +02:00 committed by Alicia Cozine
parent 559c92f9b6
commit 53217a3dbd

View file

@ -153,7 +153,7 @@ access a folder on the same host::
groups: LocalGroup groups: LocalGroup
update_password: no update_password: no
password_never_expired: yes password_never_expired: yes
with_items: loop:
- name: User1 - name: User1
password: Password1 password: Password1
- name: User2 - name: User2
@ -195,7 +195,7 @@ are created::
- Application - Application
company: Ansible company: Ansible
update_password: on_create update_password: on_create
with_items: loop:
- name: Test User - name: Test User
password: Password password: Password
- name: Admin User - name: Admin User