/cdk-super-app

a super app contains a list of demos for aws architecting intermediate level

Primary LanguageTypeScript

Multiple apps in CDK

multiple apps in bin

|-- bin
    |-- first-app.ts
    |-- second-app.ts

synth the first app

cdk --app 'npx ts-node --prefer-ts-exts bin/first-app.ts' synth

synth the second app

cdk --app 'npx ts-node --prefer-ts-exts bin/second-app.ts' synth

deploy an app

dk --app 'npx ts-node --prefer-ts-exts bin/second-app.ts' deploy