File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -175,10 +175,11 @@ resource "aws_lb_target_group" "alb_main" {
175
175
vpc_id = var. metaflow_vpc_id
176
176
177
177
health_check {
178
- protocol = " HTTP"
179
- matcher = " 200,202"
180
- timeout = 10
181
- path = " /healthcheck"
178
+ protocol = " HTTP"
179
+ matcher = " 200,202"
180
+ timeout = 60
181
+ path = " /healthcheck"
182
+ unhealthy_threshold = 5
182
183
}
183
184
184
185
tags = var. standard_tags
@@ -195,11 +196,12 @@ resource "aws_lb_target_group" "alb_db_migrate" {
195
196
vpc_id = var. metaflow_vpc_id
196
197
197
198
health_check {
198
- protocol = " HTTP"
199
- port = 8080
200
- matcher = " 200,202"
201
- timeout = 10
202
- path = " /healthcheck"
199
+ protocol = " HTTP"
200
+ port = 8080
201
+ matcher = " 200,202"
202
+ timeout = 60
203
+ path = " /healthcheck"
204
+ unhealthy_threshold = 5
203
205
}
204
206
205
207
tags = var. standard_tags
You can’t perform that action at this time.
0 commit comments