Skip to content

Commit

Permalink
feat: invoke_arn output
Browse files Browse the repository at this point in the history
  • Loading branch information
h1manshu98 committed Nov 9, 2023
1 parent 6d2d9fd commit 916af4a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,9 @@ output "tags" {
output "lambda_log_group_name" {
value = !var.existing_cloudwatch_log_group ? aws_cloudwatch_log_group.lambda[0].name : 0
description = "A mapping of tags to assign to the resource."
}

output "invoke_arn" {
value = join("", aws_lambda_function.default.*.invoke_arn)

Check warning on line 19 in outputs.tf

View workflow job for this annotation

GitHub Actions / tf-lint / tflint

List items should be accessed using square brackets
description = "Invoke ARN"
}

0 comments on commit 916af4a

Please sign in to comment.