Adding option to brand across services where possible
This commit is contained in:
@@ -7,10 +7,25 @@
|
||||
loop:
|
||||
- "{{ authentik_data_dir }}"
|
||||
- "{{ authentik_data_dir }}/media"
|
||||
- "{{ authentik_data_dir }}/media/branding"
|
||||
- "{{ authentik_data_dir }}/custom-templates"
|
||||
- "{{ authentik_data_dir }}/blueprints"
|
||||
- "{{ authentik_data_dir }}/certs"
|
||||
- "{{ authentik_data_dir }}/postgres"
|
||||
|
||||
- name: Deploy Authentik branding blueprint
|
||||
ansible.builtin.template:
|
||||
src: branding-blueprint.yaml.j2
|
||||
dest: "{{ authentik_data_dir }}/blueprints/sovereign-branding.yaml"
|
||||
mode: '0644'
|
||||
|
||||
- name: Copy tenant logo to Authentik media
|
||||
ansible.builtin.copy:
|
||||
src: "{{ tenant_logo_local_path }}"
|
||||
dest: "{{ authentik_data_dir }}/media/branding/logo.png"
|
||||
mode: '0644'
|
||||
when: tenant_logo_local_path | default('') != ''
|
||||
|
||||
- name: Deploy Authentik docker-compose
|
||||
ansible.builtin.template:
|
||||
src: docker-compose.yml.j2
|
||||
|
||||
Reference in New Issue
Block a user