This repository was archived by the owner on May 27, 2024. It is now read-only.
Commit 2c7ed07
committed
Update loop_nested.yml
Fix the example of referencing a variable for looping with `with_nested`.
Before:
```
changed: [localhost] => (item=[u'listvar1', 1])
changed: [localhost] => (item=[u'listvar1', 2])
changed: [localhost] => (item=[u'listvar1', 3])
```
After:
```
changed: [localhost] => (item=[u'a', 1])
changed: [localhost] => (item=[u'a', 2])
changed: [localhost] => (item=[u'a', 3])
changed: [localhost] => (item=[u'b', 1])
changed: [localhost] => (item=[u'b', 2])
changed: [localhost] => (item=[u'b', 3])
changed: [localhost] => (item=[u'c', 1])
changed: [localhost] => (item=[u'c', 2])
changed: [localhost] => (item=[u'c', 3])
```1 parent b505865 commit 2c7ed07
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
0 commit comments