Skip to content

Commit 3fe488d

Browse files
fix: Update stage_access_logs_cloudwatch_log_group outputs (#138)
1 parent 5d15486 commit 3fe488d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,12 @@ output "stage_invoke_url" {
127127

128128
output "stage_access_logs_cloudwatch_log_group_name" {
129129
description = "Name of cloudwatch log group created"
130-
value = try(aws_cloudwatch_log_group.this[0].name, null)
130+
value = try(aws_cloudwatch_log_group.this["this"].name, null)
131131
}
132132

133133
output "stage_access_logs_cloudwatch_log_group_arn" {
134134
description = "Arn of cloudwatch log group created"
135-
value = try(aws_cloudwatch_log_group.this[0].arn, null)
135+
value = try(aws_cloudwatch_log_group.this["this"].arn, null)
136136
}
137137

138138
################################################################################

0 commit comments

Comments
 (0)