summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/no_log.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/test/playbooks/no_log.yml')
-rw-r--r--test/schemas/test/playbooks/no_log.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/schemas/test/playbooks/no_log.yml b/test/schemas/test/playbooks/no_log.yml
new file mode 100644
index 0000000..e1944dd
--- /dev/null
+++ b/test/schemas/test/playbooks/no_log.yml
@@ -0,0 +1,11 @@
+- hosts: localhost
+ vars:
+ some_var: true
+ tasks:
+ - ansible.builtin.debug:
+ msg: foo
+ no_log: true
+
+ - ansible.builtin.debug:
+ msg: foo
+ no_log: "{{ some_var }}"