fix: oidc config variables were named incorrectly
This commit is contained in:
parent
f04b17109b
commit
c6930732ee
1 changed files with 2 additions and 2 deletions
|
|
@ -231,8 +231,8 @@ export async function getContext() {
|
||||||
async function getOidcConfig() {
|
async function getOidcConfig() {
|
||||||
// Check for the OIDC environment variables first
|
// Check for the OIDC environment variables first
|
||||||
let issuer = process.env.OIDC_ISSUER
|
let issuer = process.env.OIDC_ISSUER
|
||||||
let client = process.env.OIDC_CLIENT
|
let client = process.env.OIDC_CLIENT_ID
|
||||||
let secret = process.env.OIDC_SECRET
|
let secret = process.env.OIDC_CLIENT_SECRET
|
||||||
|
|
||||||
if (!issuer || !client || !secret) {
|
if (!issuer || !client || !secret) {
|
||||||
const config = await getConfig()
|
const config = await getConfig()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue