Skip to content

Commit

Permalink
feat(aurora): database name output (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-ook authored Apr 22, 2022
1 parent 99607a5 commit 016dcaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ output "user" {
description = "The master user credential of the Aurora cluster"
sensitive = true
value = zipmap(
["name", "password"],
[aws_rds_cluster.db.master_username, random_password.password.result]
["database", "name", "password"],
[aws_rds_cluster.db.database_name, aws_rds_cluster.db.master_username, random_password.password.result]
)
}

0 comments on commit 016dcaf

Please sign in to comment.