summaryrefslogtreecommitdiff
path: root/test/samples/with_nested.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/samples/with_nested.yml')
-rw-r--r--test/samples/with_nested.yml13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/samples/with_nested.yml b/test/samples/with_nested.yml
deleted file mode 100644
index aa295554fd..0000000000
--- a/test/samples/with_nested.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-- hosts: localhost
- connection: local
- gather_facts: no
- vars:
- users:
- - foo
- - bar
- - bam
- tasks:
- - debug: msg="item.0={{ item[0] }} item.1={{ item[1] }}"
- with_nested:
- - users
- - [ 'clientdb', 'employeedb', 'providerdb' ]