Created
June 12, 2021 18:00
-
-
Save mjzone/b75d43dc09995e1456ed57f2e7296ab4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as cdk from '@aws-cdk/core'; | |
import { FargateDemoStack } from '../lib/fargate'; | |
import { CloudfrontDemoStack } from '../lib/cloudfront'; | |
const app = new cdk.App(); | |
// FargateDemoStack | |
new FargateDemoStack(app, "FargateDemoStack", { | |
env: { account: "123456789", region: "eu-central-1" }, | |
}); | |
// CloudfrontDemoStack | |
new CloudfrontDemoStack(app, "CloudfrontDemoStack", { | |
stage: "prod", | |
env: { account: "123456789", region: "eu-central-1" }, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment