summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/no_log/dynamic.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/no_log/dynamic.yml')
-rw-r--r--test/integration/targets/no_log/dynamic.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/integration/targets/no_log/dynamic.yml b/test/integration/targets/no_log/dynamic.yml
new file mode 100644
index 0000000..4a1123d
--- /dev/null
+++ b/test/integration/targets/no_log/dynamic.yml
@@ -0,0 +1,27 @@
+- name: test dynamic no log
+ hosts: testhost
+ gather_facts: no
+ ignore_errors: yes
+ tasks:
+ - name: no loop, task fails, dynamic no_log
+ debug:
+ msg: "SHOW {{ var_does_not_exist }}"
+ no_log: "{{ not (unsafe_show_logs|bool) }}"
+
+ - name: loop, task succeeds, dynamic does no_log
+ debug:
+ msg: "SHOW {{ item }}"
+ loop:
+ - a
+ - b
+ - c
+ no_log: "{{ not (unsafe_show_logs|bool) }}"
+
+ - name: loop, task fails, dynamic no_log
+ debug:
+ msg: "SHOW {{ var_does_not_exist }}"
+ loop:
+ - a
+ - b
+ - c
+ no_log: "{{ not (unsafe_show_logs|bool) }}"