summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/var_blending/vars_file.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/var_blending/vars_file.yml')
-rw-r--r--test/integration/targets/var_blending/vars_file.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/var_blending/vars_file.yml b/test/integration/targets/var_blending/vars_file.yml
new file mode 100644
index 0000000..971e16a
--- /dev/null
+++ b/test/integration/targets/var_blending/vars_file.yml
@@ -0,0 +1,12 @@
+# this file is here to support testing vars_files in the blending tests only.
+# in general define test data in the individual role:
+# roles/role_name/vars/main.yml
+
+foo: "Hello"
+things1:
+ - 1
+ - 2
+things2:
+ - "{{ foo }}"
+ - "{{ foob | default('') }}"
+vars_file_var: 321