diff options
Diffstat (limited to 'test/schemas/negative_test/playbooks/loop.yml')
-rw-r--r-- | test/schemas/negative_test/playbooks/loop.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/schemas/negative_test/playbooks/loop.yml b/test/schemas/negative_test/playbooks/loop.yml new file mode 100644 index 0000000..fd02ec5 --- /dev/null +++ b/test/schemas/negative_test/playbooks/loop.yml @@ -0,0 +1,7 @@ +--- +- hosts: localhost + tasks: + - name: that should pass + ansible.builtin.debug: + var: item + loop: 123 # <-- number is not valid |