Skip to content

Commit 914e03b

Browse files
Update outputs.tf
1 parent 5a614ec commit 914e03b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ output "db_instance_username" {
2323
value = nonsensitive(module.db.db_instance_username)
2424
}
2525

26+
output "db_name" {
27+
description = "The database name used in the RDS module"
28+
value = var.db_name
29+
}
30+
2631
output "db_instance_password" {
2732
description = "Password for accessing the database."
2833
value = var.custom_user_password != "" ? var.custom_user_password : nonsensitive(random_password.master[0].result)

0 commit comments

Comments
 (0)