Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 479 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 479 Bytes

Terraform Module: AWS VPC

How to use

Define a module with the source, no-brand/vpc/aws.
Then, pass variables to fit your needs.

module "vpc" {
  source    = "no-brand/vpc/aws"
  
  namespace = "nb"
  region    = "ap-northeast-3"
  stage     = "dev"
  cidr      = "10.255.0.0/16"

  tags      = {
    Stage = "dev"
    Owner = "no-brand"
  }
}

Examples

How to contribute

Requirements

Providers

License

Apache License 2.0