feat: add ability to provision proxy apps using blueprints

This commit is contained in:
Bert-Jan Fikse 2026-01-14 14:05:05 +01:00
parent 3f8afa12ef
commit 438a41356a
Signed by: bert-jan
GPG key ID: C1E0AB516AC16D1A
3 changed files with 56 additions and 1 deletions

View file

@ -46,6 +46,14 @@
loop: "{{ authentik_oidc_apps }}"
register: oidc_templates
- name: Render Proxy blueprints
ansible.builtin.template:
src: blueprints/blueprint-proxy-app.yaml.j2
dest: "{{ authentik_docker_volume_dir }}/blueprints/20-proxy-{{ item.slug }}.yaml"
mode: "0644"
loop: "{{ authentik_proxy_apps }}"
register: proxy_templates
- name: Create docker-compose file for authentik
template:
src: docker-compose.yml.j2