ansible-authelia-role/tasks/main.yml
2023-04-19 19:34:15 +02:00

18 lines
422 B
YAML

---
# tasks file for Ansible-Authelia-Role
- name: Install Authelia from DEB file
ansible.builtin.apt:
deb: "{{ authelia_dowload_url }}"
notify: Restart authelia
- name: Install config
ansible.builtin.template:
src: configuration.yml.j2
dest: /etc/authelia/configuration.yml
mode: "0600"
owner: root
group: root
validate: authelia validate-config --config %s
notify: Restart authelia