Skip to content

Instantly share code, notes, and snippets.

@ohlol
Created March 26, 2020 21:31
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
config = Config()
vpc_config = config.require_object('vpc')
vpc_name = get_stack()
vpc = VPC(name=vpc_name,
options=VPCOptions(cidr_block=vpc_config.get('cidr_block'),
subnets=vpc_config.get('subnets'),
create_route53_zone=True))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment