Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 388 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 388 Bytes

AWS VPC module for Terraform

A lightweight VPC module for Terraform.

Usage

module "vpc" {
  source = "github.com/turnbullpublishing/tf_vpc"

  environment = "vpc_name"
  key_name = "james"

  vpc_cidr = "10.0.0.0/16"
  public_subnets = ["10.0.1.0/24"]
  private_subnets = ["10.0.100.0/24"]
}

See interface.tf for additional configurable variables.

License

MIT