Skip to content

Commit

Permalink
Revert to the previous argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanbowang committed Aug 24, 2022
1 parent 2921cfa commit 0a7f4ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ locals {
resource "aws_db_instance" "this" {
count = local.count_rds_instance

db_name = var.rds_database_name
name = var.rds_database_name
identifier = var.rds_identifier
engine = var.rds_engine
engine_version = var.rds_engine_version
Expand Down Expand Up @@ -63,7 +63,7 @@ data "aws_db_snapshot" "latest_snapshot" {
resource "aws_db_instance" "snapshot" {
count = local.count_rds_instance_with_snapshot

db_name = var.rds_database_name
name = var.rds_database_name
identifier = var.rds_identifier
engine = var.rds_engine
engine_version = var.rds_engine_version
Expand Down

0 comments on commit 0a7f4ae

Please sign in to comment.