Do not replace spaces in private key. Error was in environment definition in ansible repo.
This commit is contained in:
parent
630a098ba5
commit
314416740f
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ ACCOUNT_USERNAME_REQUIRED = False
|
||||||
# OAuth2 configuration
|
# OAuth2 configuration
|
||||||
OAUTH2_PROVIDER = {
|
OAUTH2_PROVIDER = {
|
||||||
"OIDC_ENABLED": True,
|
"OIDC_ENABLED": True,
|
||||||
"OIDC_RSA_PRIVATE_KEY": env.str("OIDC_RSA_PRIVATE_KEY_1", default="").replace(" ", ""),
|
"OIDC_RSA_PRIVATE_KEY": env.str("OIDC_RSA_PRIVATE_KEY_1", default=""),
|
||||||
"SCOPES": {
|
"SCOPES": {
|
||||||
"openid": "OpenID Connect scope",
|
"openid": "OpenID Connect scope",
|
||||||
"profile": "Profile Information",
|
"profile": "Profile Information",
|
||||||
|
|
Loading…
Add table
Reference in a new issue