summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/var_files.yml
blob: 263028773f777c78f5846d91cb23f243a6ff101b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: var_files should accept null
  hosts: localhost
  vars_files: null

- name: var_files should accept string
  hosts: localhost
  vars_files: /dev/null

- name: var_files should accept array[string]
  hosts: localhost
  vars_files:
    - /dev/null

- name: var_files should accept array of array[string]
  hosts: localhost
  vars_files:
    - ["/dev/null"]