Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to deploy a three-tier architecture in AWS using Terraform?

### What is Terraform?
### What is Terraform ?

Terraform is an open-source infrastructure as a code (IAC) tool that allows to create, manage & deploy the production-ready environment. Terraform codifies cloud APIs into declarative configuration files. Terraform can manage both existing service providers and custom in-house solutions.

Expand Down
2 changes: 1 addition & 1 deletion Terraform-Cofigs/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resource "aws_db_instance" "default" {
engine_version = "8.0.20"
instance_class = "db.t2.micro"
multi_az = true
name = "mydb"
db_name = "mydb"
username = "username"
password = "password"
skip_final_snapshot = true
Expand Down