feat: add blueprints for authentik ldap outpost and render values directly instead of using env vars
Signed-off-by: Bert-Jan Fikse <bert-jan@whatwedo.ch>
This commit is contained in:
parent
d25f1c5304
commit
c27b4d9488
12 changed files with 323 additions and 86 deletions
|
|
@ -13,9 +13,11 @@ entries:
|
|||
name: {{ item.slug }}
|
||||
attrs:
|
||||
name: {{ item.slug }}
|
||||
client_type: confidential
|
||||
client_id: !Env {{ item.client_id_env }}
|
||||
client_secret: !Env {{ item.client_secret_env }}
|
||||
client_type: {{ item.client_type | default('confidential') }}
|
||||
client_id: "{{ item.client_id }}"
|
||||
{% if item.client_type | default('confidential') == 'confidential' %}
|
||||
client_secret: "{{ item.client_secret }}"
|
||||
{% endif %}
|
||||
|
||||
redirect_uris:
|
||||
{% for ru in item.redirect_uris %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue