Skip to content

Commit

Permalink
set name_prefix to null to mach our current rds instnaces
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-weis-msr committed Apr 5, 2024
1 parent 176b0e1 commit 2fa6214
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ resource "aws_db_instance" "default" {
resource "aws_db_parameter_group" "default" {
count = length(var.parameter_group_name) == 0 && module.this.enabled ? 1 : 0

name_prefix = "${module.this.id}${module.this.delimiter}"
name_prefix = null
family = var.db_parameter_group
tags = module.this.tags

Expand All @@ -121,7 +121,7 @@ resource "aws_db_parameter_group" "default" {
resource "aws_db_option_group" "default" {
count = length(var.option_group_name) == 0 && module.this.enabled ? 1 : 0

name_prefix = "${module.this.id}${module.this.delimiter}"
name_prefix = null
engine_name = var.engine
major_engine_version = local.major_engine_version
tags = module.this.tags
Expand Down

0 comments on commit 2fa6214

Please sign in to comment.