Update health check path to /app to avoid 307 redirect

This commit is contained in:
chas
2021-12-10 13:44:40 -05:00
parent 1c3a2c4603
commit a876c46b98

View File

@@ -169,7 +169,7 @@ resource "aws_lb_target_group" "target_group_http" {
vpc_id = data.aws_vpc.default.id
health_check {
matcher = "200,301,302"
path = "/"
path = "/app"
}
}