From 7316c24bb14d8f657ab88e3b7c3b4d595cd3e913 Mon Sep 17 00:00:00 2001 From: James Green Date: Thu, 5 Dec 2024 14:30:10 +0000 Subject: [PATCH] slighty up the autoscaling threshold to remoeve containers --- modules/dns/ecs_auto_scaling.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dns/ecs_auto_scaling.tf b/modules/dns/ecs_auto_scaling.tf index 989fa9b8..1348917d 100644 --- a/modules/dns/ecs_auto_scaling.tf +++ b/modules/dns/ecs_auto_scaling.tf @@ -124,7 +124,7 @@ resource "aws_cloudwatch_metric_alarm" "ecs_cpu_alarm_low" { namespace = "AWS/ECS" period = "60" statistic = "Average" - threshold = "20" + threshold = "25" dimensions = { ClusterName = aws_ecs_cluster.server_cluster.name