renamed OIDC_REQUEST_PROFILE_SCOPE to OPENID_REQUEST_PROFILE_SCOPE, updated deployments

This commit is contained in:
Deepak Prabhakara 2024-03-16 20:16:25 +00:00
parent 6ce07464f3
commit 41b47ed4ce
6 changed files with 6 additions and 6 deletions

View File

@ -107,4 +107,4 @@ ENTERPRISE_ORY_SDK_TOKEN=
ENTERPRISE_ORY_PROJECT_ID=
# Uncomment below if you wish to opt-out of sending `profile` scope in OIDC Provider Authorization Request
#OIDC_REQUEST_PROFILE_SCOPE=false
#OPENID_REQUEST_PROFILE_SCOPE=false

View File

@ -12,4 +12,4 @@ patches:
images:
- name: boxyhq/jackson
newTag: 1.20.6
newTag: 1.21.1

View File

@ -5,4 +5,4 @@ resources:
images:
- name: boxyhq/mock-saml
newTag: 1.3.6
newTag: 1.3.8

View File

@ -12,4 +12,4 @@ patches:
images:
- name: boxyhq/jackson
newTag: 1.20.6
newTag: 1.21.1

View File

@ -5,4 +5,4 @@ resources:
images:
- name: boxyhq/mock-saml
newTag: 1.3.6
newTag: 1.3.8

View File

@ -71,7 +71,7 @@ const jacksonOptions: JacksonOption = {
private: process.env.OPENID_RSA_PRIVATE_KEY || '',
public: process.env.OPENID_RSA_PUBLIC_KEY || '',
},
requestProfileScope: process.env.OIDC_REQUEST_PROFILE_SCOPE === 'false' ? false : true,
requestProfileScope: process.env.OPENID_REQUEST_PROFILE_SCOPE === 'false' ? false : true,
},
certs: {
publicKey: process.env.PUBLIC_KEY || '',