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:
parent
559c92f9b6
commit
53217a3dbd
1 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ access a folder on the same host::
|
|||
groups: LocalGroup
|
||||
update_password: no
|
||||
password_never_expired: yes
|
||||
with_items:
|
||||
loop:
|
||||
- name: User1
|
||||
password: Password1
|
||||
- name: User2
|
||||
|
@ -195,7 +195,7 @@ are created::
|
|||
- Application
|
||||
company: Ansible
|
||||
update_password: on_create
|
||||
with_items:
|
||||
loop:
|
||||
- name: Test User
|
||||
password: Password
|
||||
- name: Admin User
|
||||
|
|
Loading…
Reference in a new issue