From 411e6d5bed7c52009b4a7c2e96636008a6bd6a3d Mon Sep 17 00:00:00 2001 From: Wellyson Freitas Date: Sat, 16 Mar 2024 14:08:26 +0100 Subject: [PATCH] Output secret ARN --- terraform/outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 terraform/outputs.tf diff --git a/terraform/outputs.tf b/terraform/outputs.tf new file mode 100644 index 0000000..3d1b708 --- /dev/null +++ b/terraform/outputs.tf @@ -0,0 +1,4 @@ +output "db_instance_master_user_secret_arn" { + description = "The ARN of the master user secret (Only available when manage_master_user_password is set to true)" + value = module.db.db_instance_master_user_secret_arn +}