tileserver-gl/deployment/modules/tileserver/target_groups.tf

24 lines
598 B
HCL

resource "aws_alb_target_group" "target_group_this" {
name_prefix = "maps-"
port = "80"
protocol = "HTTP"
vpc_id = "${data.terraform_remote_state.mono_vpc.vpc_id[0]}"
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"
}
lifecycle {
create_before_destroy = true
}
}