Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/scholzj/terraform-aws-vpc

Terraform module for creating s simple Amazon AWS VPC and subnets
https://github.com/scholzj/terraform-aws-vpc

aws aws-vpc terraform terraform-modules vpc

Last synced: about 5 hours ago
JSON representation

Terraform module for creating s simple Amazon AWS VPC and subnets

Awesome Lists containing this project

README

        

# 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](https://github.com/scholzj/aws-vpc).

## 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](examples/) dir.