Skip to content

Commit

Permalink
chore: Rename env var
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Oct 17, 2024
1 parent bb84e24 commit afe81d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import assert = require("assert");

const {
AWS_ACCOUNT_ID,
AWS_DEFAULT_REGION,
AWS_REGION,
SSL_CERTIFICATE_ARN,
HOSTNAME,
STAGE = "dev",
Expand All @@ -27,7 +27,7 @@ new KeycloakStack(app, `VedaKeycloakStack-${STAGE}`, {
// env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION },
/* Uncomment the next line if you know exactly what Account and Region you
* want to deploy the stack to. */
env: { account: AWS_ACCOUNT_ID, region: AWS_DEFAULT_REGION },
env: { account: AWS_ACCOUNT_ID, region: AWS_REGION },
/* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */
sslCertificateArn: SSL_CERTIFICATE_ARN,
hostname: HOSTNAME,
Expand Down

0 comments on commit afe81d4

Please sign in to comment.