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.
1 parent 5d15486 commit 3fe488dCopy full SHA for 3fe488d
outputs.tf
@@ -127,12 +127,12 @@ output "stage_invoke_url" {
127
128
output "stage_access_logs_cloudwatch_log_group_name" {
129
description = "Name of cloudwatch log group created"
130
- value = try(aws_cloudwatch_log_group.this[0].name, null)
+ value = try(aws_cloudwatch_log_group.this["this"].name, null)
131
}
132
133
output "stage_access_logs_cloudwatch_log_group_arn" {
134
description = "Arn of cloudwatch log group created"
135
- value = try(aws_cloudwatch_log_group.this[0].arn, null)
+ value = try(aws_cloudwatch_log_group.this["this"].arn, null)
136
137
138
################################################################################
0 commit comments