summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/failed_when.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/test/playbooks/failed_when.yml')
-rw-r--r--test/schemas/test/playbooks/failed_when.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/schemas/test/playbooks/failed_when.yml b/test/schemas/test/playbooks/failed_when.yml
new file mode 100644
index 0000000..14c942a
--- /dev/null
+++ b/test/schemas/test/playbooks/failed_when.yml
@@ -0,0 +1,18 @@
+- hosts: localhost
+ tasks:
+ - name: foo
+ ansible.builtin.debug:
+ msg: foo!
+ failed_when: false # <- valid
+
+ - name: foo
+ ansible.builtin.debug:
+ msg: foo!
+ failed_when: "string is valid too" # <- valid
+
+ - name: foo
+ ansible.builtin.debug:
+ msg: foo!
+ failed_when: # <- lists are valid too
+ - foo
+ - bar