Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Expose all AWS lambda attributes (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneeth-n committed Jan 13, 2022
1 parent 918b301 commit b0e7aeb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ MIT Licensed. See LICENSE for full details.
| Name | Description |
|------|-------------|
| <a name="output_arn"></a> [arn](#output\_arn) | AWS lambda arn |
| <a name="output_aws_lambda_function"></a> [aws\_lambda\_function](#output\_aws\_lambda\_function) | AWS lambda attributes |
| <a name="output_dlq"></a> [dlq](#output\_dlq) | AWS lambda Dead Letter Queue details |
| <a name="output_function_name"></a> [function\_name](#output\_function\_name) | AWS lambda function name |
| <a name="output_invoke_arn"></a> [invoke\_arn](#output\_invoke\_arn) | AWS lambda invoke\_arn |
Expand Down
6 changes: 6 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@ output "sns_topics" {
description = "AWS lambda SNS topics if any"
value = try(var.trigger.sns_topics, [])
}

output "aws_lambda_function" {
description = "AWS lambda attributes"
value = aws_lambda_function.lambda
}

0 comments on commit b0e7aeb

Please sign in to comment.