Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/scholzj/terraform-aws-vpc
- Owner: scholzj
- License: apache-2.0
- Created: 2017-06-17T21:49:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-20T20:27:12.000Z (over 3 years ago)
- Last Synced: 2023-03-03T22:03:11.046Z (over 1 year ago)
- Topics: aws, aws-vpc, terraform, terraform-modules, vpc
- Language: HCL
- Homepage:
- Size: 13.7 KB
- Stars: 14
- Watchers: 2
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 NATThis 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.