mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update docs (playbooks_loops.rst, playbooks_filters.rst)
This commit is contained in:
parent
b11a44e5b4
commit
f717f14fe9
2 changed files with 4 additions and 4 deletions
|
@ -181,7 +181,7 @@ It might happen like so::
|
||||||
Given the mysql hosts and privs subkey lists, you can also iterate over a list in a nested subkey::
|
Given the mysql hosts and privs subkey lists, you can also iterate over a list in a nested subkey::
|
||||||
|
|
||||||
- name: Setup MySQL users
|
- name: Setup MySQL users
|
||||||
mysql_user: name={{ item.0.user }} password={{ item.0.mysql.password }} host={{ item.1 }} priv={{ item.0.mysql.privs | join('/') }}
|
mysql_user: name={{ item.0.name }} password={{ item.0.mysql.password }} host={{ item.1 }} priv={{ item.0.mysql.privs | join('/') }}
|
||||||
with_subelements:
|
with_subelements:
|
||||||
- users
|
- users
|
||||||
- mysql.hosts
|
- mysql.hosts
|
||||||
|
|
Loading…
Reference in a new issue