Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add unique_id output
  • Loading branch information
pglagerweij authored Jul 13, 2021
commit 62274d1e26477a45ae77fac0712346236fe94dc5
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ output "lambda_role_name" {
description = "The name of the IAM role created for the Lambda Function"
value = element(concat(aws_iam_role.lambda.*.name, [""]), 0)
}

output "lambda_role_unique_id" {
description = "The name of the IAM role created for the Lambda Function"
value = element(concat(aws_iam_role.lambda.*.unique_id, [""]), 0)
}

# CloudWatch Log Group
output "lambda_cloudwatch_log_group_arn" {
Expand Down