Commit 0ebc29d3 by James Cammarata

Merge pull request #4203 from candeira/with_nested

fix documentation examples for with_nested
parents 77508c7b 2aae5e53
...@@ -500,15 +500,15 @@ Nested Loops ...@@ -500,15 +500,15 @@ Nested Loops
Loops can be nested as well:: Loops can be nested as well::
- name: give users access to multiple databases - name: give users access to multiple databases
mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:* mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:ALL password=foo
with_nested: with_nested:
- [ 'alice', 'bob', 'eve' ] - [ 'alice', 'bob', 'eve' ]
- [ 'clientdb', 'employeedb', 'providerdb' ] - [ 'clientdb', 'employeedb', 'providerdb' ]
As with the case of 'with_items' above, you can use previously defined variables. Just specify the variable'sname without templating it with '{{ }}':: As with the case of 'with_items' above, you can use previously defined variables. Just specify the variable's name without templating it with '{{ }}'::
- name: here, 'users' contains the above list of employees - name: here, 'users' contains the above list of employees
mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:* mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:ALL password=foo
with_nested: with_nested:
- users - users
- [ 'clientdb', 'employeedb', 'providerdb' ] - [ 'clientdb', 'employeedb', 'providerdb' ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment