summaryrefslogtreecommitdiffstats
path: root/test/schemas/negative_test/playbooks/invalid-failed-when.yml
blob: 075f16669183dbef7ee882a0e874dd7b5a6f2cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- hosts: localhost
  tasks:
    - debug:
        msg: "failed_when should not accept numeric"
      failed_when: 123

    - debug:
        msg: "failed_when should not accept sequence"
      failed_when:
        - foo
        - bar

    - debug:
        msg: "failed_when should not accept map"
      failed_when: {}