Skip to content

Commit

Permalink
Fixing name for parameter groups
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 19, 2022
1 parent 05b85de commit 940c471
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_db_subnet_group" "samples_rds_subnet_group" {
}

resource "aws_db_parameter_group" "solutions_mariadb" {
name = "solutions_mariadb"
name = "solutions-mariadb"
family = "mariadb10.6"
parameter {
name = "character_set_server"
Expand Down Expand Up @@ -32,7 +32,7 @@ resource "aws_db_instance" "mariadb_rds_instance" {
}

resource "aws_db_parameter_group" "solutions_mysql" {
name = "solutions_mysql"
name = "solutions-mysql"
family = "mysql8.0"
parameter {
name = "character_set_server"
Expand Down Expand Up @@ -60,7 +60,7 @@ resource "aws_db_instance" "mysql_rds_instance" {
}

resource "aws_db_parameter_group" "solutions_postgresql" {
name = "solutions_postgresql"
name = "solutions-postgresql"
family = "postgres14"
parameter {
name = "character_set_server"
Expand Down

0 comments on commit 940c471

Please sign in to comment.