Skip to content

Commit

Permalink
Adding more time to timeout health check in ecs_target group
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Elhaiek committed Apr 10, 2024
1 parent 75904c2 commit 2bb3003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/alb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,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 = 30
interval = 60
healthy_threshold = 3
unhealthy_threshold = 3
matcher = "200" // Expect a 200 OK response for a healthy status
timeout = 60
timeout = 50
}
}

Expand Down

0 comments on commit 2bb3003

Please sign in to comment.