adding output for iam role used

This commit is contained in:
Matt McLane 2023-08-10 09:44:22 -04:00
parent 4e5c8068b9
commit 7add221831

View file

@ -77,3 +77,9 @@ output "log_group_arn" {
description = "The Amazon Resource Name (ARN) of the CloudWatch log group" description = "The Amazon Resource Name (ARN) of the CloudWatch log group"
value = try(aws_cloudwatch_log_group.this[0].arn, null) 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
}