From 44f4bb9d173cf15b37e44201320919f8ebf4a7f1 Mon Sep 17 00:00:00 2001 From: x0atsopze <109428762+x0atsopze@users.noreply.github.com> Date: Fri, 3 May 2024 16:28:53 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2e1fa9..c838565 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # How to deploy a three-tier architecture in AWS using Terraform? -### What is Terraform? +### What is Terraform (IaC tool)? 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. From 4b480e63c3892b183a922f84830b2809af65e9ea Mon Sep 17 00:00:00 2001 From: x0atsopze <109428762+x0atsopze@users.noreply.github.com> Date: Fri, 3 May 2024 16:35:36 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c838565..9c2e179 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # How to deploy a three-tier architecture in AWS using Terraform? -### What is Terraform (IaC tool)? +### 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. From 77e1a0a304749f379c5d7e09cf78b72f6d33ec53 Mon Sep 17 00:00:00 2001 From: Anderson T Date: Fri, 24 May 2024 16:12:05 -0400 Subject: [PATCH 3/3] Updating name parameter from name to db_name as per terraform documentation --- Terraform-Cofigs/rds.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terraform-Cofigs/rds.tf b/Terraform-Cofigs/rds.tf index 610db24..cb3b794 100644 --- a/Terraform-Cofigs/rds.tf +++ b/Terraform-Cofigs/rds.tf @@ -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