Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 671 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 671 Bytes

AWS-Terraform Infrastructure for 3-Tier Architecture with High Availability

An 3-Tier architecture, infrastructure by AWS and provisioned with Terraform. Ensuring high availability.

diagram2

Definition of Done

The returned results will be almost continuously different, alternating between IPs for each web tier and app tier.

demo

Run

1. Credentials

Create a .tf file with the following template:

provider "aws" {
  region     = "..."
  access_key = "..."
  secret_key = "..."
}

2. Apply

terraform init
terraform plan
terraform apply

3. Destroy

terraform destroy