summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tags.yml
blob: b758257ac04762059dd056f039ab6dd9ef0ae3d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- hosts: localhost
  roles:
    - role: foo
      tags: foo # <-- allowed
    - role: foo
      tags: # <-- allowed
        - foo
        - bar
  tags: # <-- allowed
    - foo
    - bar
  tasks:
    - ansible.builtin.debug:
        msg: "..."
      tags: # <-- allowed
        - foo
        - bar
    - ansible.builtin.debug:
        msg: "..."
      tags: # <-- allowed
        - foo
- hosts: localhost
  tags: foo # <-- allowed