Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 349 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 349 Bytes

AWS VPC Terraform module

Terraform module which creates VPC resources on AWS. Will create two private and public subnets by default.

Usage

git clone https://github.com/tecbrix/aws-vpc.git
cd aws-vpc
terraform apply

Usage as module

module "vpc" {
  source = "github.com/tecbrix/aws-vpc"
  name = "test"
  env  = "test"
}