Skip to content

Instantly share code, notes, and snippets.

View medelman17's full-sized avatar

Michael Edelman medelman17

  • Atlantic Highlands, NJ
View GitHub Profile
@medelman17
medelman17 / cdk-vpc-template.ts
Created April 28, 2021 04:02
AWS CDK template for Networking/VPC
import * as cdk from '@aws-cdk/core';
import * as ec2 from '@aws-cdk/aws-ec2';
import * as iam from '@aws-cdk/aws-iam';
import { InfraNestedStackProps, InfraNestedStack } from '@infra/common';
export interface NetworkStackProps extends cdk.StackProps {
// Define construct properties here
}
export class NetworkStack extends cdk.Stack {