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

Commit b0e7aeb

Browse files
authored
Expose all AWS lambda attributes (#37)
1 parent 918b301 commit b0e7aeb

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ MIT Licensed. See LICENSE for full details.
8484
| Name | Description |
8585
|------|-------------|
8686
| <a name="output_arn"></a> [arn](#output\_arn) | AWS lambda arn |
87+
| <a name="output_aws_lambda_function"></a> [aws\_lambda\_function](#output\_aws\_lambda\_function) | AWS lambda attributes |
8788
| <a name="output_dlq"></a> [dlq](#output\_dlq) | AWS lambda Dead Letter Queue details |
8889
| <a name="output_function_name"></a> [function\_name](#output\_function\_name) | AWS lambda function name |
8990
| <a name="output_invoke_arn"></a> [invoke\_arn](#output\_invoke\_arn) | AWS lambda invoke\_arn |

outputs.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,9 @@ output "sns_topics" {
3737
description = "AWS lambda SNS topics if any"
3838
value = try(var.trigger.sns_topics, [])
3939
}
40+
41+
output "aws_lambda_function" {
42+
description = "AWS lambda attributes"
43+
value = aws_lambda_function.lambda
44+
}
45+

0 commit comments

Comments
 (0)