Skip to content

Commit

Permalink
Fixing parameter group for Postgres to force utf8
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 19, 2022
1 parent 940c471 commit b3feeaf
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand Down

0 comments on commit b3feeaf

Please sign in to comment.