mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use syntax loop instead of with_items in example (#47241)
This commit is contained in:
parent
bac43eebe0
commit
3f8a0f6657
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ EXAMPLES = '''
|
|||
ufw:
|
||||
rule: allow
|
||||
src: '{{ item }}'
|
||||
with_items:
|
||||
loop:
|
||||
- 10.0.0.0/8
|
||||
- 172.16.0.0/12
|
||||
- 192.168.0.0/16
|
||||
|
|
Loading…
Reference in a new issue