Remove authentik

It's a bigger application than I need, and I wasn't actually using it for anything anyway
This commit is contained in:
Jake Howard
2023-02-23 19:50:44 +00:00
parent b0cf6c2680
commit 92012a42e1
7 changed files with 0 additions and 123 deletions

View File

@ -1,20 +0,0 @@
- 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