feat: add user role

This commit is contained in:
2025-01-12 10:24:03 +01:00
parent 60b36db8a7
commit 4bdc1797e1
4 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
- name: Ensure user is {{ user.state }}
ansible.builtin.user:
name: "{{ user.name }}"
state: "{{ user.state }}"