ansible/roles/openshift-apps/test-auth/templates/client_secrets.json
Aurélien Bompard 44d019e203
First try for the test-auth app
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2020-10-19 17:43:28 +02:00

17 lines
713 B
JSON

{
"web": {
"auth_uri": "https://id{{env_suffix}}.fedoraproject.org/openidc/Authorization",
"client_id": "{{ test_auth_oidc_client_id }}",
{% if env == 'staging' %}
"client_secret": "{{ test_auth_stg_oidc_client_secret }}",
{% else %}
"client_secret": "{{ test_auth_oidc_client_secret }}",
{% endif %}
"issuer": "https://id{{env_suffix}}.fedoraproject.org/openidc/",
"redirect_uris": [
"https://test-auth.app.os{{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"
}
}