Skip to content
This repository has been archived by the owner on Feb 13, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (17 loc) · 498 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 498 Bytes

AWS VPC module for Terraform

A lightweight VPC module for Terraform.

Usage

module "vpc" {
  source          = "github.com/empaticoOrg/tf_vpc.git?ref=v0.0.3"
  environment     = "${var.environment}"
  app             = "${var.app}"
  key_name        = "${var.key_name}"
  vpc_cidr        = "${var.vpc_cidr}"
  public_subnets  = ["${var.public_subnets}"]
  private_subnets = ["${var.private_subnets}"]
}

See interface.tf for additional configurable variables.

License

MIT