Merge pull request #4813 from marcosnils/fix/oidc-jwks-url

Uses the correct jwks_uri for oidc configuration endpoint
This commit is contained in:
Patrik Oldsberg
2021-03-04 17:46:58 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend': patch
---
Change the JWKS url value for the oidc configuration endpoint
+1 -1
View File
@@ -31,7 +31,7 @@ export function createOidcRouter(options: Options) {
issuer: baseUrl,
token_endpoint: `${baseUrl}/v1/token`,
userinfo_endpoint: `${baseUrl}/v1/userinfo`,
jwks_uri: `${baseUrl}/v1/certs`,
jwks_uri: `${baseUrl}/.well-known/jwks.json`,
response_types_supported: ['id_token'],
subject_types_supported: ['public'],
id_token_signing_alg_values_supported: ['RS256'],