Skip to content

Commit

Permalink
fix- tflint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasarpooja committed Nov 21, 2023
1 parent 7e8714b commit 41a74e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ output "name" {
}

output "arn" {
value = join("", aws_lambda_function.default[*].invoke_arn)
value = join("", aws_lambda_function.default[*].arn)
description = "The Amazon Resource Name (ARN) identifying your Lambda Function."
}

Expand All @@ -21,6 +21,6 @@ output "lambda_log_group_name" {
}

output "invoke_arn" {
value = join("", aws_lambda_function.default.*.invoke_arn)
value = join("", aws_lambda_function.default[*].invoke_arn)
description = "Invoke ARN"
}

0 comments on commit 41a74e7

Please sign in to comment.