1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix with_items debug loop example. Fixes #34540 (#34578)

This commit is contained in:
Matt Martz 2018-01-08 16:13:10 -06:00 committed by GitHub
parent 08a1d47427
commit df909c5726
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,8 @@ DOCUMENTATION = """
EXAMPLES = """
- name: "loop through list"
debug: msg="An item: {{item}}"
debug:
msg: "An item: {{item}}"
with_items:
- 1
- 2