# -------------------------------------------------------------------- # Lambda outputs # -------------------------------------------------------------------- output "function_invoke_arn" { description = "The invoke ARN of the Lambda Function" value = aws_lambda_function.this.invoke_arn } output "function_arn" { description = "The ARN of the Lambda Function" value = aws_lambda_function.this.arn } output "function_name" { description = "The name of the Lambda Function" value = aws_lambda_function.this.function_name }