Skip to content

Instantly share code, notes, and snippets.

@calvin-puram
Created October 7, 2021 14:16
Show Gist options
  • Save calvin-puram/2a8aa982710298f21d47427759ef1891 to your computer and use it in GitHub Desktop.
Save calvin-puram/2a8aa982710298f21d47427759ef1891 to your computer and use it in GitHub Desktop.
module "myapp-vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "3.7.0"
name = "myapp-vpc"
cidr = var.vpc_cidr_block
private_subnets = var.private_subnets_cidr_blocks
public_subnets = var.public_subnets_cidr_blocks
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment