cdk for deploying stack with http

This commit is contained in:
Matthew Zhao
2021-03-02 22:57:49 -08:00
parent 78c06f8fc4
commit 9b1a240837
11 changed files with 14377 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env node
import 'source-map-support/register';
import * as cdk from '@aws-cdk/core';
import { DeployStack } from '../lib/deploy-stack';
const app = new cdk.App();
new DeployStack(app, 'DeployStack');