This is a demo project for learning CDK development with TypeScript. There is only one stack to create a custom VPC within default AWS account/region.
The cdk.json
file tells the CDK Toolkit how to execute your app.
npm run build
compile typescript to jsnpm run watch
watch for changes and compilenpm run test
perform the jest unit testscdk deploy
deploy this stack to your default AWS account/regioncdk destroy
remove the resources created in the default AWS account/regioncdk diff
compare deployed stack with current statecdk synth
emits the synthesized CloudFormation template
npm run build
compile typescript to jscdk bootstrap
creates an S3 bucket that the AWS CDK will use to store assets and templatescdk deploy --all
deploy this stack to your default AWS account/regioncdk destroy --all
remove the resources created in the default AWS account/region