Skip to content

Commit

Permalink
Removing parameter group for postgres rds
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 19, 2022
1 parent b3feeaf commit efe42eb
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,6 @@ resource "aws_db_instance" "mysql_rds_instance" {
parameter_group_name = aws_db_parameter_group.solutions_mysql.name
}

resource "aws_db_parameter_group" "solutions_postgresql" {
name = "solutions-postgresql"
family = "postgres14"
parameter {
name = "server_encoding"
value = "utf8"
}
}

resource "aws_db_instance" "postgresql_rds_instance" {
allocated_storage = 10
Expand All @@ -79,7 +71,6 @@ resource "aws_db_instance" "postgresql_rds_instance" {
skip_final_snapshot = true
db_subnet_group_name = aws_db_subnet_group.samples_rds_subnet_group.name
vpc_security_group_ids = [aws_security_group.samples_security_group.id]
parameter_group_name = aws_db_parameter_group.solutions_postgresql.name
}

resource "aws_db_instance" "mssql_rds_instance" {
Expand Down

0 comments on commit efe42eb

Please sign in to comment.