Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/8parth/terraform-two-tier-example
Terraform Example for deploying traditional two tier web application with Web and DB Security Groups.
https://github.com/8parth/terraform-two-tier-example
aws terraform terraform-example
Last synced: 7 days ago
JSON representation
Terraform Example for deploying traditional two tier web application with Web and DB Security Groups.
- Host: GitHub
- URL: https://github.com/8parth/terraform-two-tier-example
- Owner: 8parth
- Created: 2017-12-31T07:32:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-31T07:56:45.000Z (almost 7 years ago)
- Last Synced: 2024-07-16T06:52:16.609Z (4 months ago)
- Topics: aws, terraform, terraform-example
- Language: HCL
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Traditional Two Tier AWS architecture setup example with Terraform
Terraform Example for deploying traditional two tier web application with Web and DB Security Groups.## What it does:
- Creates VPC with public and private subnet along with Internet Gateway and NAT Gateway.
- Creates Security Groups for Web and Database with ingress and egress rules.
- Deploys two EC2 servers.## Quick Start:
- Clone the repo.
- Provide Access Key, Secret Key to be used for AWS in `variables.tf`.
- Provide Path to EC2 Key Pair and name of Key Pair in `variables.tf`.
- run `terraform init`
- run `terraform apply`## TO DO:
- [ ] Add Bootstrap scripts for setting up DB and Web instance.
- [ ] Auto Scaling and load balancer configuration