From b3feeaf31ee34d4c4d230e5507b0260be62ec0a0 Mon Sep 17 00:00:00 2001 From: twerthi Date: Fri, 19 Aug 2022 14:04:01 -0700 Subject: [PATCH] Fixing parameter group for Postgres to force utf8 --- .../aws-base-infrastructure-terraform/rds.tf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf b/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf index 97f7d4e..729c4f3 100644 --- a/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf +++ b/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf @@ -63,12 +63,7 @@ resource "aws_db_parameter_group" "solutions_postgresql" { name = "solutions-postgresql" family = "postgres14" parameter { - name = "character_set_server" - value = "utf8" - } - - parameter { - name = "character_set_client" + name = "server_encoding" value = "utf8" } }