Skip to content

Commit

Permalink
Attempting to get MariaDB and MySQL RDS instances a .NET friendly cha…
Browse files Browse the repository at this point in the history
…racter set.
  • Loading branch information
twerthi committed Aug 19, 2022
1 parent 5404e83 commit fe480f9
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ resource "aws_db_parameter_group" "solutions_mariadb" {
name = "character_set_database"
value = "utf8"
}

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

resource "aws_db_instance" "mariadb_rds_instance" {
Expand Down Expand Up @@ -62,7 +67,12 @@ resource "aws_db_parameter_group" "solutions_mysql" {
parameter {
name = "character_set_database"
value = "utf8"
}
}

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

resource "aws_db_instance" "mysql_rds_instance" {
Expand Down

0 comments on commit fe480f9

Please sign in to comment.