Skip to content

Commit fd5b56e

Browse files
authored
Feat/ Fix deprecated variable name (#65)
* fix var name * fmt
1 parent eb848a4 commit fd5b56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/datastore/rds.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ resource "aws_db_instance" "this" {
106106
engine_version = var.db_engine_version
107107
instance_class = var.db_instance_type # Hardware configuration
108108
identifier = "${var.resource_prefix}${var.db_name}${var.resource_suffix}" # used for dns hostname needs to be customer unique in region
109-
name = var.db_name # unique id for CLI commands (name of DB table which is why we're not adding the prefix as no conflicts will occur and the API expects this table name)
109+
db_name = var.db_name # unique id for CLI commands (name of DB table which is why we're not adding the prefix as no conflicts will occur and the API expects this table name)
110110
username = var.db_username
111111
password = random_password.this.result
112112
db_subnet_group_name = aws_db_subnet_group.this.id

0 commit comments

Comments
 (0)