Skip to content

Commit 9344dee

Browse files
committed
Reinstate log group outputs
1 parent 4d7aabd commit 9344dee

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

outputs.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,18 @@ output "cloudwatch_log_groups" {
9999
value = aws_cloudwatch_log_group.this
100100
}
101101

102+
# TODO - remove at next breaking change
103+
output "cloudwatch_log_group_name" {
104+
description = "Name of cloudwatch log group created"
105+
value = try(aws_cloudwatch_log_group.this[0].name, null)
106+
}
107+
108+
# TODO - remove at next breaking change
109+
output "cloudwatch_log_group_arn" {
110+
description = "Arn of cloudwatch log group created"
111+
value = try(aws_cloudwatch_log_group.this[0].arn, null)
112+
}
113+
102114
################################################################################
103115
# Parameter Group
104116
################################################################################

0 commit comments

Comments
 (0)