Files
Jose 1cd309c151 fix 🐛: Define user and password variables
This commit updates the `main.yml` file to explicitly define essential user and password variables. This ensures the application has the necessary credentials for proper operation and enhances security by centralizing configuration.  The changes improve the script's usability and setup process.
2025-12-13 10:09:04 +01:00

13 lines
518 B
YAML

---
# defaults file for debian_common
# Andre 2025: this is to prevent:
# [WARNING]: Module remote_tmp /root/.ansible/tmp did not exist and was created with a mode of 0700,
# this may cause issues when running as another user. To avoid this, create the remote_tmp dir with the correct permissions manually"
allow_world_readable_tmpfiles: true
ansible_user_id: root
interactive_user: "{{ remote_user | default('ansible') }}"
interactive_home: "/home/{{ interactive_user}}"
interactive_password: "{{ test_password }}"