diff --git a/apps/services/auth/ids-api/infra/ids-api.ts b/apps/services/auth/ids-api/infra/ids-api.ts index 878d904b356d..cf102e44dd9d 100644 --- a/apps/services/auth/ids-api/infra/ids-api.ts +++ b/apps/services/auth/ids-api/infra/ids-api.ts @@ -135,6 +135,13 @@ export const cleanupSetup = (): ServiceBuilder => }, }) .db({ name: 'servicesauth', extensions: ['uuid-ossp'] }) + .env({ + IDENTITY_SERVER_ISSUER_URL: { + dev: 'https://identity-server.dev01.devland.is', + staging: 'https://identity-server.staging01.devland.is', + prod: 'https://innskra.island.is', + }, + }) .extraAttributes({ dev: schedule, staging: schedule, diff --git a/charts/identity-server/values.dev.yaml b/charts/identity-server/values.dev.yaml index b53061b69f53..bc00f7dc9f34 100644 --- a/charts/identity-server/values.dev.yaml +++ b/charts/identity-server/values.dev.yaml @@ -482,6 +482,7 @@ services-auth-ids-api-cleanup: DB_NAME: 'servicesauth' DB_REPLICAS_HOST: 'postgres-applications-reader.internal' DB_USER: 'servicesauth' + IDENTITY_SERVER_ISSUER_URL: 'https://identity-server.dev01.devland.is' LOG_LEVEL: 'info' NODE_OPTIONS: '--max-old-space-size=460' SERVERSIDE_FEATURES_ON: '' diff --git a/charts/identity-server/values.prod.yaml b/charts/identity-server/values.prod.yaml index 82624a9e4182..ba661ef716e1 100644 --- a/charts/identity-server/values.prod.yaml +++ b/charts/identity-server/values.prod.yaml @@ -479,6 +479,7 @@ services-auth-ids-api-cleanup: DB_NAME: 'servicesauth' DB_REPLICAS_HOST: 'postgres-ids.internal' DB_USER: 'servicesauth' + IDENTITY_SERVER_ISSUER_URL: 'https://innskra.island.is' LOG_LEVEL: 'info' NODE_OPTIONS: '--max-old-space-size=460' SERVERSIDE_FEATURES_ON: 'driving-license-use-v1-endpoint-for-v2-comms' diff --git a/charts/identity-server/values.staging.yaml b/charts/identity-server/values.staging.yaml index 9609edea0edf..b91abb909f26 100644 --- a/charts/identity-server/values.staging.yaml +++ b/charts/identity-server/values.staging.yaml @@ -482,6 +482,7 @@ services-auth-ids-api-cleanup: DB_NAME: 'servicesauth' DB_REPLICAS_HOST: 'postgres-applications.internal' DB_USER: 'servicesauth' + IDENTITY_SERVER_ISSUER_URL: 'https://identity-server.staging01.devland.is' LOG_LEVEL: 'info' NODE_OPTIONS: '--max-old-space-size=460' SERVERSIDE_FEATURES_ON: ''