feat: add ability to provision proxy apps using blueprints
This commit is contained in:
parent
3f8afa12ef
commit
438a41356a
3 changed files with 56 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue