infrastructure.ts 244 B

1234567
  1. #!/usr/bin/env node
  2. import 'source-map-support/register';
  3. import * as cdk from '@aws-cdk/core';
  4. import { InfrastructureStack } from '../lib/infrastructure-stack';
  5. const app = new cdk.App();
  6. new InfrastructureStack(app, 'InfrastructureStack');