Fix invalid variable naming for user role

According to the linter variables used within rules should start with
the role's prefix.
This commit is contained in:
Thomas Kleinendorst 2024-04-13 13:54:49 +02:00
parent 6c0425418e
commit 22376928e2
3 changed files with 8 additions and 8 deletions

View file

@ -8,8 +8,8 @@
ansible.builtin.include_role:
name: user
vars:
username: "{{ actual_user }}"
password: "{{ actual_password }}"
user_username: "{{ actual_user }}"
user_password: "{{ actual_password }}"
- name: Create a directory for holding actual's (volume) data
become: true
become_user: "{{ actual_user }}"