diff --git a/terraform/alb.tf b/terraform/alb.tf index 9784782..d8fbd8b 100644 --- a/terraform/alb.tf +++ b/terraform/alb.tf @@ -80,11 +80,11 @@ resource "aws_lb_target_group" "ecs_target" { protocol = "HTTP" // Change this to HTTP path = "/health" // Specify a path that your application responds to with HTTP 200 port = "traffic-port" // Use the traffic port - interval = 180 + interval = 120 healthy_threshold = 4 unhealthy_threshold = 2 matcher = "200" // Expect a 200 OK response for a healthy status - timeout = 180 + timeout = 120 } }