Skip to content

Commit

Permalink
Set CDK deploy region to us-east-1
Browse files Browse the repository at this point in the history
This region is used by the Quarkus service properties
  • Loading branch information
moralesl committed Sep 27, 2020
1 parent 69f5dd2 commit a84cb99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fargate/ecs_cdk/lib/ecs_cdk-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class EcsCdkStack extends cdk.Stack {
const app = new cdk.App();
new EcsCdkStack(app, 'EcsCdkStack', {
env: {
region: process.env.CDK_DEFAULT_REGION,
region: "us-east-1",
account: process.env.CDK_DEFAULT_ACCOUNT,
}
});
2 changes: 1 addition & 1 deletion fargate/eks_cdk/lib/eks_cdk-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class EksCdkStack extends cdk.Stack {
const app = new cdk.App();
new EksCdkStack(app, 'EksCdkStack', {
env: {
region: process.env.CDK_DEFAULT_REGION,
region: "us-east-1",
account: process.env.CDK_DEFAULT_ACCOUNT,
}
});

0 comments on commit a84cb99

Please sign in to comment.