Skip to content

Instantly share code, notes, and snippets.

@gilmoregrills
Created April 7, 2020 09:28
Show Gist options
  • Save gilmoregrills/18342d32b1eabde6c34309bfc647bb68 to your computer and use it in GitHub Desktop.
Save gilmoregrills/18342d32b1eabde6c34309bfc647bb68 to your computer and use it in GitHub Desktop.
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "1.55.0"
name = "unicorn-vpc"
cidr = "10.99.0.0/16"
azs = ["eu-west-2a"]
public_subnets = ["10.99.1.0/24"]
assign_generated_ipv6_cidr_block = true
enable_dns_hostnames = true
enable_nat_gateway = false
single_nat_gateway = false
one_nat_gateway_per_az = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment