You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
252 B

---
- name: Set time zone to UTC
community.general.timezone:
name: Etc/UTC
- name: Create group for app user
group:
name: "{{ app_username }}"
- name: Create app user
user:
name: "{{ app_username }}"
group: "{{ app_username }}"