Skip to content

Commit 7192167

Browse files
authored
feat: add log_group_name output (#69)
1 parent 07a9083 commit 7192167

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ No modules.
9595
| Name | Description |
9696
|------|-------------|
9797
| <a name="output_lambda_function"></a> [lambda\_function](#output\_lambda\_function) | Observe Lambda function |
98+
| <a name="output_log_group_name"></a> [log\_group\_name](#output\_log\_group\_name) | The name of the CloudWatch log group where logs for the Lambda will be written. |
9899
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
99100

100101
## License

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@ output "lambda_function" {
22
description = "Observe Lambda function"
33
value = aws_lambda_function.this
44
}
5+
6+
output "log_group_name" {
7+
description = "The name of the CloudWatch log group where logs for the Lambda will be written."
8+
value = aws_cloudwatch_log_group.group.name
9+
}

0 commit comments

Comments
 (0)