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
- Host: GitHub
- URL: https://github.com/bugbiteme/demo-tform-n-tier
- Owner: bugbiteme
- License: mit
- Created: 2020-09-12T02:08:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-15T17:26:57.000Z (over 5 years ago)
- Last Synced: 2025-04-12T17:07:10.582Z (about 1 year ago)
- Language: HCL
- Homepage:
- Size: 340 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# demo-tform-n-tier

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