Skip to content

Commit

Permalink
Updating region deployment for ipv6 cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
bugatha committed Aug 15, 2024
1 parent 1a40646 commit 69e7c00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ const app = new cdk.App();

const account = process.env.CDK_DEFAULT_ACCOUNT;
const region = process.env.CDK_DEFAULT_REGION;
const props = { env: { account, region } };

let props = { env: { account, region } };
new BlueprintIPv4Construct(app, props);

// Deploying IPV6 cluster in us-east-2 region. Assuming IPV4 cluster will be deployed to another region.
props = { env: { account, region: "us-east-2" } };
// Create ipv6 cluster
new BlueprintIPV6Construct(app, props);

0 comments on commit 69e7c00

Please sign in to comment.