From 00e961b1bd8b71529f615a90c9ff5ab38a54dc2e Mon Sep 17 00:00:00 2001 From: chris Date: Thu, 16 Nov 2023 10:32:45 -0500 Subject: [PATCH] Add nolog.yml --- nolog.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nolog.yml diff --git a/nolog.yml b/nolog.yml new file mode 100644 index 0000000..a5f11f9 --- /dev/null +++ b/nolog.yml @@ -0,0 +1,17 @@ +--- +- name: Test Nolog + hosts: all + become: false + gather_facts: false + + vars: + __my_password: 09fjgn34t87j3t8 + + + tasks: + - name: Echo password via command + ansible.builtin.command: "/bin/echo 'hello world - your password is {{ __my_password }}" + + - name: What about via debug... + ansible.builtin.debug: + msg: "your password is {{ __my_password }}" \ No newline at end of file