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

https://github.com/bugbiteme/demo-tform-n-tier

Create a VPC and a database driven website behind an AWS native loadbalancer
https://github.com/bugbiteme/demo-tform-n-tier

Last synced: about 1 year ago
JSON representation

Create a VPC and a database driven website behind an AWS native loadbalancer

Awesome Lists containing this project

README

          

# demo-tform-n-tier

![Diagram](img/n-tier-diagram.png)

Structure:

```
.
├── LICENSE
├── README.md
├── main.tf
├── modules
│ ├── autoscaling
│ │ ├── cloud_config.yaml
│ │ ├── main.tf
│ │ ├── outputs.tf
│ │ └── variables.tf
│ ├── database
│ │ ├── main.tf
│ │ ├── outputs.tf
│ │ └── variables.tf
│ └── networking
│ ├── main.tf
│ ├── outputs.tf
│ └── variables.tf
├── outputs.tf
├── providers.tf
├── terraform.tfvars
├── variables.tf
└── versions.tf
```

Outputs:

db_password =
lb_dns_name =

Source code for web application:
https://github.com/scottwinkler/vanilla-webserver-src