File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ This module provides a Lambda function which logs to CloudWatch. If no image URI
59
59
| arn | The ARN of the Lambda function. |
60
60
| invoke_arn | The invoke ARN of the Lambda function. |
61
61
| log_group_name | The name of the CloudWatch log group created for the Lambda function to log to. |
62
+ | log_group_arn | The ARN of the CloudWatch log group created for the Lambda function to log to. |
62
63
63
64
## Example
64
65
Original file line number Diff line number Diff line change @@ -12,3 +12,8 @@ output "log_group_name" {
12
12
description = " The name of the CloudWatch log group created for the Lambda function to log to."
13
13
value = try (aws_cloudwatch_log_group. main [0 ]. name , null )
14
14
}
15
+
16
+ output "log_group_arn" {
17
+ description = " The ARN of the CloudWatch log group created for the Lambda function to log to."
18
+ value = try (aws_cloudwatch_log_group. main [0 ]. arn , null )
19
+ }
You can’t perform that action at this time.
0 commit comments