fix 🐛: Include and debug secrets

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.
This commit is contained in:
2025-12-14 09:48:05 +01:00
parent c4d6dd8f4b
commit a4b6ecd9f1

12
tasks/testvault.yml Normal file
View File

@@ -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 }}"