mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 02:20:51 +08:00
This reverts commit81c4dd3a18. Revert "flask-oidc-dev: Changing layout of client secrets configuration" This reverts commit81d27e668b. Signed-off-by: David Kirwan <dkirwan@redhat.com>
18 lines
718 B
JSON
18 lines
718 B
JSON
{
|
|
"web": {
|
|
"auth_uri": "https://id{{env_suffix}}.fedoraproject.org/openidc/Authorization",
|
|
"client_id": "flask-oidc-dev",
|
|
{% if env == 'staging' %}
|
|
"client_secret": "{{ flask_oidc_dev_stg_oidc_client_secret }}",
|
|
{% else %}
|
|
"client_secret": "{{ flask_oidc_dev_oidc_client_secret }}",
|
|
{% endif %}
|
|
"issuer": "https://id{{env_suffix}}.fedoraproject.org/openidc/",
|
|
"redirect_uris": [
|
|
"https://app-flask-oidc-dev.apps.ocp{{env_suffix}}.fedoraproject.org/oidc/oidc_callback"
|
|
],
|
|
"token_uri": "https://id{{env_suffix}}.fedoraproject.org/openidc/Token",
|
|
"userinfo_uri": "https://id{{env_suffix}}.fedoraproject.org/openidc/UserInfo"
|
|
}
|
|
}
|