Skip to content

Commit

Permalink
NCAS: make the LB health check more lenient
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-k1998 committed Oct 4, 2023
1 parent 8f85580 commit 60962a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/environments/ncas/load_balancer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ resource "aws_lb_target_group" "ncas_target_group" {

health_check {
healthy_threshold = "3"
interval = "15"
interval = "30"
protocol = "HTTP"
port = "80"
unhealthy_threshold = "3"
unhealthy_threshold = "5"
matcher = "200-302"
timeout = "5"
timeout = "10"
}

}
Expand Down

0 comments on commit 60962a8

Please sign in to comment.