We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b0090e0 + 2d07fd1 commit 681cb81Copy full SHA for 681cb81
README.md
@@ -51,6 +51,7 @@ providing default values that should make sense for most use cases.
51
52
| Name | Description |
53
|------|-------------|
54
+| <a name="output_arn"></a> [arn](#output\_arn) | The cloudwatch log group ARN |
55
| <a name="output_name"></a> [name](#output\_name) | The cloudwatch log group name |
56
57
## Providers
outputs.tf
@@ -1,3 +1,8 @@
1
+output "arn" {
2
+ description = "The cloudwatch log group ARN"
3
+ value = aws_cloudwatch_log_group.main.arn
4
+}
5
+
6
output "name" {
7
description = "The cloudwatch log group name"
8
value = aws_cloudwatch_log_group.main.name
0 commit comments