Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tellisnz/terraform-aws
Basic 3 Tier VPC using Terraform and AWS
https://github.com/tellisnz/terraform-aws
aws terraform
Last synced: about 2 months ago
JSON representation
Basic 3 Tier VPC using Terraform and AWS
- Host: GitHub
- URL: https://github.com/tellisnz/terraform-aws
- Owner: tellisnz
- Created: 2018-05-30T14:14:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-28T08:06:17.000Z (about 5 years ago)
- Last Synced: 2024-08-03T01:30:50.806Z (5 months ago)
- Topics: aws, terraform
- Language: TypeScript
- Homepage:
- Size: 40 KB
- Stars: 20
- Watchers: 2
- Forks: 46
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-list - terraform-aws
README
# Terraform and AWS
A template and configuration that reuses modules from the terraform registry to
create a three tier VPC and deploy a sample app to it, where:The public presentation tier is an nginx host serving AngularJS static content
that passes API requests through to the private application tier.The private application tier hosts a spring boot application that persists data
in the DB tier.The db tier hosts an RDS PostgreSQL instance.
Sample app from (here)[http://javasampleapproach.com/spring-framework/spring-mvc/angular-4-spring-jpa-postgresql-example-angular-4-http-client-spring-boot-restapi-server].
# Usage
Take a copy of terraform.tfvars.template and substitute required values.
Apply as per normal, i.e. `terraform apply -var-file=terraform.tfvars`
# Testing
Install go and deps and check out code to $GOPATH/src
Run `go test -v -timeout 20m -run TestTerraformAws`