From 462b0f2b08403d9ed913b0ca36017329549751f3 Mon Sep 17 00:00:00 2001 From: Miguel Elhaiek Date: Tue, 9 Apr 2024 00:29:09 -0300 Subject: [PATCH] Adding more timeout to health check on the target group --- terraform/target-group-and-listener.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/target-group-and-listener.tf b/terraform/target-group-and-listener.tf index 6162b6c..9d63f84 100644 --- a/terraform/target-group-and-listener.tf +++ b/terraform/target-group-and-listener.tf @@ -21,6 +21,7 @@ resource "aws_lb_target_group" "ecs_target" { healthy_threshold = 3 unhealthy_threshold = 3 matcher = "200" // Expect a 200 OK response for a healthy status + timeout = 25 } }