This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
OlderNewer