diff --git a/README.md b/README.md index c2e1fa9..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? +### 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. 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