[go: up one dir, main page]

Skip to content

Terraform module for creating s simple Amazon AWS VPC and subnets

License

Notifications You must be signed in to change notification settings

scholzj/terraform-aws-vpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform module for Amazon AWS VPC

This Terraform module creates:

  • Amazon AWS VPC
  • Internet Gateway
  • Subnets in all configured availability zones and routing tables linking them to the Internet Gateway (public subnets)

Additionally, if variable private_subnets is set to true, it will create:

  • NAT with Elastic IP address in each availability zone
  • Private subnet in each availability zone with routing tables linking them to the NAT

This module is used in my own confguration. If you just want to create a VPC, go to this GitHub repo.

Including as a module

This repository should be included as a module into your own configuration. An example of how to include this can be found in the examples dir.