From 5b9bf3ff43587f1ee69e25d0ae8a6f547bb7268a Mon Sep 17 00:00:00 2001 From: Matti Nannt Date: Thu, 17 Apr 2025 15:41:13 +0900 Subject: [PATCH] chore(infra): increase cloudwatch elb alarm limit to 10 (#5407) --- infra/terraform/cloudwatch.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/terraform/cloudwatch.tf b/infra/terraform/cloudwatch.tf index 10f591b8ae..f2e4f3e257 100644 --- a/infra/terraform/cloudwatch.tf +++ b/infra/terraform/cloudwatch.tf @@ -47,7 +47,7 @@ locals { alarm_description = "Average API 5XX load balancer error code count is too high" comparison_operator = "GreaterThanThreshold" evaluation_periods = 5 - threshold = 5 + threshold = 10 period = 600 unit = "Count" namespace = "AWS/ApplicationELB"