mirror of
https://github.com/terraform-aws-modules/terraform-aws-rds-proxy.git
synced 2025-12-17 08:21:12 +00:00
adding output for iam role used
This commit is contained in:
parent
4e5c8068b9
commit
7add221831
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue