Skip to content

Commit

Permalink
[1.2.0] Custom application (cont.)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdang1-shopmacher committed Dec 3, 2024
1 parent e98417f commit 5163122
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions processor/src/types/index.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export type ConnectorEnvVars = {
region: string;
authUrl: string;
authMode: string;
sessionAudience: string;
sessionIssuer: string;
};
mollie: {
testApiKey: string;
Expand Down
1 change: 1 addition & 0 deletions processor/src/utils/config.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const readConfiguration = () => {
projectKey: process.env.CTP_PROJECT_KEY as string,
scope: process.env.CTP_SCOPE as string,
region: process.env.CTP_REGION as string,
authUrl: process.env.CTP_AUTH_URL as string,
authMode: process.env.AUTHENTICATION_MODE as string,
sessionAudience: (process.env.CTP_SESSION_AUDIENCE as string) || 'https://mc.europe-west1.gcp.commercetools.com',
sessionIssuer: (process.env.CTP_SESSION_ISSUER as string) || 'gcp-eu',
Expand Down

0 comments on commit 5163122

Please sign in to comment.