Terraform module to bootstrap a VPC for use with our shared infrastructure.
module "vpc" {
source = "../../modules/vpc"
name = "shared-vpc"
vpc_cidr_block = "10.0.0.0/16"
}
The module documentation is generated with terraform-docs by running terraform-docs md . > ./docs/MODULE.md
from the module directory.
You can also view the latest version of the module documentation here.