This commit removes the inclusion of the `secrets.yml` variables file and comments out the associated task. This simplifies the project setup and addresses potential security concerns related to storing sensitive information in the codebase. The task is now commented out, effectively disabling it without removing the code.
17 lines
363 B
YAML
17 lines
363 B
YAML
---
|
|
- name: Test secrets.yml
|
|
hosts: localhost
|
|
|
|
vars:
|
|
admin_user: joseadm
|
|
admin_password: changeme
|
|
|
|
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 }}"
|
|
|