curratore / tf_vpc

A lightweight VPC module for Terraform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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"

  cidr = "10.0.0.0/16"
  public_subnets = ["10.0.1.0/24"]
  private_subets = ["10.0.100.0/24"]
}

See interface.tf for additional configurable variables.

License

MIT

About

A lightweight VPC module for Terraform

License:MIT License


Languages

Language:HCL 100.0%