Skip to content

Commit

Permalink
Fix health check endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgarde committed Nov 17, 2023
1 parent af9e37d commit 655c430
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/load_balancer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ resource "aws_lb_target_group" "app" {

health_check {
enabled = true
matcher = "200,302"
path = var.app_base_path
matcher = "200"
path = "${var.app_base_path}/about"
}
}

Expand Down

0 comments on commit 655c430

Please sign in to comment.