diff --git a/modules/aws_ecs/main.tf b/modules/aws_ecs/main.tf index 3486a6b..d9cfe58 100644 --- a/modules/aws_ecs/main.tf +++ b/modules/aws_ecs/main.tf @@ -30,7 +30,7 @@ resource "aws_db_instance" "this" { allocated_storage = 80 instance_class = var.rds_instance_class engine = "postgres" - engine_version = "13.7" + engine_version = "14.10" db_name = "hammerhead_production" username = aws_secretsmanager_secret_version.rds_username.secret_string password = aws_secretsmanager_secret_version.rds_password.secret_string diff --git a/modules/aws_ecs_ec2/main.tf b/modules/aws_ecs_ec2/main.tf index 761a68b..d835757 100644 --- a/modules/aws_ecs_ec2/main.tf +++ b/modules/aws_ecs_ec2/main.tf @@ -148,7 +148,7 @@ resource "aws_db_instance" "this" { allocated_storage = 80 instance_class = var.rds_instance_class engine = "postgres" - engine_version = "13.7" + engine_version = "13.10" db_name = "hammerhead_production" username = aws_secretsmanager_secret_version.rds_username.secret_string password = aws_secretsmanager_secret_version.rds_password.secret_string