Skip to content

Instantly share code, notes, and snippets.

View abkunal's full-sized avatar

Kunal Yadav abkunal

View GitHub Profile
@abkunal
abkunal / config.py
Last active January 2, 2021 15:24
CDK configuration to create a custom VPC
from aws_cdk.aws_ec2 import RouterType, CfnSecurityGroup
# basic VPC configs
VPC = 'custom-vpc'
INTERNET_GATEWAY = 'internet-gateway'
KEY_PAIR_NAME = 'us-east-1-key'
REGION = 'us-east-1'