Skip to content

Commit

Permalink
Tweaking database parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 19, 2022
1 parent efe42eb commit 5404e83
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ resource "aws_db_parameter_group" "solutions_mariadb" {
name = "character_set_client"
value = "utf8"
}

parameter {
name = "character_set_connection"
value = "utf8"
}

parameter {
name = "character_set_database"
value = "utf8"
}
}

resource "aws_db_instance" "mariadb_rds_instance" {
Expand Down Expand Up @@ -43,6 +53,16 @@ resource "aws_db_parameter_group" "solutions_mysql" {
name = "character_set_client"
value = "utf8"
}

parameter {
name = "character_set_connection"
value = "utf8"
}

parameter {
name = "character_set_database"
value = "utf8"
}
}

resource "aws_db_instance" "mysql_rds_instance" {
Expand Down

0 comments on commit 5404e83

Please sign in to comment.