Skip to content

Commit

Permalink
:fix rds to t3 micro
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwupark committed Mar 20, 2024
1 parent b9366a8 commit 6d4560a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resource "aws_db_instance" "mysql_db" {
identifier = var.DB_IDENTIFIER
allocated_storage = 20
engine_version = "8.0"
instance_class = "db.t2.micro"
instance_class = "db.t3.micro"
username = var.DB_USERNAME # 인스턴스에서 직접 제어되는 DB Master User Name
password = var.DB_PASSWORD
parameter_group_name = "default.mysql8.0" # Update for MySQL 8.0
Expand Down

0 comments on commit 6d4560a

Please sign in to comment.