23 lines
592 B
HCL
23 lines
592 B
HCL
resource "aws_alb_target_group" "target_group_this" {
|
|
name = "maps-test"
|
|
port = "80"
|
|
protocol = "HTTP"
|
|
vpc_id = "${data.terraform_remote_state.mono_vpc.vpc_id[0]}"
|
|
slow_start = 120
|
|
deregistration_delay = 150
|
|
stickiness {
|
|
type = "lb_cookie"
|
|
enabled = true
|
|
cookie_duration = "300"
|
|
}
|
|
health_check {
|
|
interval = "60"
|
|
path = "/health"
|
|
port = "80"
|
|
healthy_threshold = "2"
|
|
unhealthy_threshold = "3"
|
|
timeout = "5"
|
|
protocol = "HTTP"
|
|
matcher = "200"
|
|
}
|
|
}
|