oidc-python-example/deployment/oidc-config.json
Wolfgang Hottgenroth 6eacafe945
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
initial
2024-01-30 10:53:37 +01:00

14 lines
525 B
JSON

{
"web": {
"issuer": "https://auth2.hottis.de/realms/hottis",
"auth_uri": "https://auth2.hottis.de/ealms/hottis/protocol/openid-connect/auth",
"client_id": "oidc-python-example",
"client_secret": "%CLIENT_SECRET%",
"redirect_uris": [
"http://localhost:8080/*"
],
"userinfo_uri": "https://auth2.hottis.de/realms/hottis/protocol/openid-connect/userinfo",
"token_uri": "https://auth2.hottis.de/realms/hottis/protocol/openid-connect/token"
}
}