diff --git a/.changeset/little-colts-hang.md b/.changeset/little-colts-hang.md index e00e53240f..ecc55e9d33 100644 --- a/.changeset/little-colts-hang.md +++ b/.changeset/little-colts-hang.md @@ -2,4 +2,4 @@ '@backstage/plugin-auth-backend': patch --- -Fix oidc auth provider +Configuration updates for the `OpenID Connect` auth provider to allow `prompt` configuration and some sensible defaults. diff --git a/app-config.yaml b/app-config.yaml index d323c15776..20e7470091 100644 --- a/app-config.yaml +++ b/app-config.yaml @@ -320,8 +320,8 @@ auth: authorizationUrl: ${AUTH_OIDC_AUTH_URL} tokenUrl: ${AUTH_OIDC_TOKEN_URL} tokenSignedResponseAlg: ${AUTH_OIDC_TOKEN_SIGNED_RESPONSE_ALG} # default='RS256' - scope: ${AUTH_OIDC_SCOPE} # default='openid profile email' - prompt: ${AUTH_OIDC_PROMPT} # default='' (allowed values: '', 'none', 'consent', 'login') + scope: ${AUTH_OIDC_SCOPE} # default='openid profile email' + prompt: ${AUTH_OIDC_PROMPT} # default='' (allowed values: '', 'none', 'consent', 'login') auth0: development: clientId: ${AUTH_AUTH0_CLIENT_ID}