From 940c47149d03877b79cdda73e5af5aeedbd31d02 Mon Sep 17 00:00:00 2001 From: twerthi Date: Fri, 19 Aug 2022 13:40:36 -0700 Subject: [PATCH] Fixing name for parameter groups --- .../aws-base-infrastructure-terraform/rds.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf b/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf index f2f78a0..97f7d4e 100644 --- a/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf +++ b/octopus-samples-instances/aws-base-infrastructure-terraform/rds.tf @@ -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" @@ -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" @@ -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"