mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-28 18:30:24 +02:00
Solved issuer url bug
This commit is contained in:
parent
6a1be99f1e
commit
f892a5b54d
@ -40,23 +40,13 @@
|
|||||||
chdir: "{{docker_compose.directories.instance}}"
|
chdir: "{{docker_compose.directories.instance}}"
|
||||||
when: "'No relations found.' in db_tables.stdout"
|
when: "'No relations found.' in db_tables.stdout"
|
||||||
|
|
||||||
- name: Construct OIDC settings JSON
|
|
||||||
set_fact:
|
|
||||||
oidc_settings_json: >-
|
|
||||||
{{ {
|
|
||||||
"enabled": True,
|
|
||||||
"client_id": oidc.client.id,
|
|
||||||
"provider_url": oidc.client.discovery_document,
|
|
||||||
"client_secret": oidc.client.secret
|
|
||||||
} | to_json }}
|
|
||||||
|
|
||||||
- name: Build OIDC settings JSON
|
- name: Build OIDC settings JSON
|
||||||
set_fact:
|
set_fact:
|
||||||
oidc_settings_json: >-
|
oidc_settings_json: >-
|
||||||
{{ {
|
{{ {
|
||||||
"enabled": True,
|
"enabled": True,
|
||||||
"client_id": oidc.client.id,
|
"client_id": oidc.client.id,
|
||||||
"provider_url": oidc.client.discovery_document,
|
"provider_url": oidc.client.issuer_url,
|
||||||
"client_secret": oidc.client.secret
|
"client_secret": oidc.client.secret
|
||||||
} | to_json }}
|
} | to_json }}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user