Skip to content

Instantly share code, notes, and snippets.

@unfor19
Created September 24, 2019 09:01
Show Gist options
  • Save unfor19/384d4e6475dc3099ccf4d88fe1bcbe5b to your computer and use it in GitHub Desktop.
Save unfor19/384d4e6475dc3099ccf4d88fe1bcbe5b to your computer and use it in GitHub Desktop.
Issue #1: Full Solution
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~>2.0"
name = "my-vpc"
cidr = "${lookup(var.cidr_ab, var.environment)}.0.0/16"
private_subnets = local.private_subnets
database_subnets = local.database_subnets
public_subnets = local.public_subnets
azs = ["us-west-2a", "us-west-2b", "us-west-2c"]
# omitted arguments for brevity
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment