Deploy authentik

Not integrated into other services quite yet. But it's there
This commit is contained in:
Jake Howard
2022-09-18 18:49:17 +01:00
parent 4f0ee78b7e
commit f49b26c6f0
7 changed files with 101 additions and 0 deletions

View File

@ -0,0 +1,20 @@
- name: Include vault
include_vars: vault.yml
- name: Create install directory
file:
path: /opt/authentik
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/authentik/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
notify: restart authentik
become: true