Skip to content

Commit 681cb81

Browse files
authored
Merge pull request #5 from geekcell/expose-arn
fix: add arn to Outputs
2 parents b0090e0 + 2d07fd1 commit 681cb81

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
@@ -51,6 +51,7 @@ providing default values that should make sense for most use cases.
5151

5252
| Name | Description |
5353
|------|-------------|
54+
| <a name="output_arn"></a> [arn](#output\_arn) | The cloudwatch log group ARN |
5455
| <a name="output_name"></a> [name](#output\_name) | The cloudwatch log group name |
5556

5657
## Providers

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
output "arn" {
2+
description = "The cloudwatch log group ARN"
3+
value = aws_cloudwatch_log_group.main.arn
4+
}
5+
16
output "name" {
27
description = "The cloudwatch log group name"
38
value = aws_cloudwatch_log_group.main.name

0 commit comments

Comments
 (0)