From 7add22183129ae76ffcf4c9fb1df782dcb9a2537 Mon Sep 17 00:00:00 2001 From: Matt McLane Date: Thu, 10 Aug 2023 09:44:22 -0400 Subject: [PATCH] adding output for iam role used --- outputs.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/outputs.tf b/outputs.tf index 06931ca..7f1ffe0 100644 --- a/outputs.tf +++ b/outputs.tf @@ -77,3 +77,9 @@ output "log_group_arn" { description = "The Amazon Resource Name (ARN) of the CloudWatch log group" value = try(aws_cloudwatch_log_group.this[0].arn, null) } + +# IAM role +output "iam_role_arn" { + description = "The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager." + value = local.role_arn +}