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

@ -3,8 +3,8 @@
ansible.builtin.include_role:
name: user
vars:
username: "{{ cloudflare_ddns_user }}"
password: "{{ cloudflare_ddns_user_password }}"
user_username: "{{ cloudflare_ddns_user }}"
user_password: "{{ cloudflare_ddns_user_password }}"
- name: Install Python dependencies # noqa: package-latest
become: true
ansible.builtin.apt: