Skip to content

Commit 045f4d5

Browse files
Merge branch 'main' into CCM-10927_test
2 parents 1a47a9e + a7b2f83 commit 045f4d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

infrastructure/terraform/components/api/cloudwatch_log_group_api_gateway_access.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "aws_cloudwatch_log_group" "api_gateway_access" {
44
}
55

66
resource "aws_cloudwatch_log_subscription_filter" "api_gateway_access" {
7-
name = replace(aws.cloudwatch_log_group.api_gateway_access.name, "/", "-")
7+
name = replace(aws_cloudwatch_log_group.api_gateway_access.name, "/", "-")
88
role_arn = local.acct.log_subscription_role_arn
99
log_group_name = aws_cloudwatch_log_group.api_gateway_access.name
1010
filter_pattern = ""

infrastructure/terraform/components/api/cloudwatch_log_group_api_gateway_execution.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ resource "aws_cloudwatch_log_group" "api_gateway_execution" {
77
}
88

99
resource "aws_cloudwatch_log_subscription_filter" "api_gateway_execution" {
10-
name = replace(aws.cloudwatch_log_group.api_gateway_access.name, "/", "-")
10+
name = replace(aws_cloudwatch_log_group.api_gateway_execution.name, "/", "-")
1111
role_arn = local.acct.log_subscription_role_arn
12-
log_group_name = aws_cloudwatch_log_group.api_gateway_access.name
12+
log_group_name = aws_cloudwatch_log_group.api_gateway_execution.name
1313
filter_pattern = ""
1414
destination_arn = local.destination_arn
1515
}

0 commit comments

Comments
 (0)