Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 517 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 517 Bytes

VPC

Terraform module to bootstrap a VPC for use with our shared infrastructure.

Usage

module "vpc" {
  source = "../../modules/vpc"

  name = "shared-vpc"

  vpc_cidr_block = "10.0.0.0/16"
}

Module Documentation

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.