mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-28 12:32:50 +08:00
18 lines
692 B
JSON
18 lines
692 B
JSON
{
|
|
"web": {
|
|
"auth_uri": "https://id{{env_suffix}}.fedoraproject.org/openidc/Authorization",
|
|
"client_id": "test-auth",
|
|
{% 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"
|
|
}
|
|
}
|