Skip to content

Commit

Permalink
Feat/ Fix deprecated variable name (#65)
Browse files Browse the repository at this point in the history
* fix var name

* fmt
  • Loading branch information
Isaac4real authored Jun 9, 2023
1 parent eb848a4 commit fd5b56e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/datastore/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ resource "aws_db_instance" "this" {
engine_version = var.db_engine_version
instance_class = var.db_instance_type # Hardware configuration
identifier = "${var.resource_prefix}${var.db_name}${var.resource_suffix}" # used for dns hostname needs to be customer unique in region
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)
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)
username = var.db_username
password = random_password.this.result
db_subnet_group_name = aws_db_subnet_group.this.id
Expand Down

0 comments on commit fd5b56e

Please sign in to comment.