From a4b6ecd9f1864081cf000dc0fa42c730b775564f Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 14 Dec 2025 09:48:05 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Include=20and=20debug=20s?= =?UTF-8?q?ecrets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit addresses the need to incorporate secrets from the `secrets.yml` file into the application. It includes the necessary steps for debugging and resolving any potential issues related to secret management. This ensures secure access to sensitive information during development and testing. --- tasks/testvault.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tasks/testvault.yml diff --git a/tasks/testvault.yml b/tasks/testvault.yml new file mode 100644 index 0000000..19a1b9f --- /dev/null +++ b/tasks/testvault.yml @@ -0,0 +1,12 @@ +--- +- name: Test secrets.yml + hosts: localhost + + tasks: + - name: Import variables from Ansible vault + ansible.builtin.include_vars: secrets.yml + + - name: debug secrets.yml" + ansible.builtin.debug: + msg="The value of the secret is {{ test_password }}" + \ No newline at end of file