Files
terraform-talos/gcp-zonal/common.tf
Serge Logvinov f8327cb3cf autoscaller fixes
2022-12-26 20:19:00 +02:00

20 lines
431 B
HCL

# data "google_client_openid_userinfo" "terraform" {}
data "google_compute_image" "talos" {
project = local.project
family = "talos-amd64"
}
resource "google_compute_region_health_check" "instance" {
name = "${local.cluster_name}-instance-health-check"
timeout_sec = 5
check_interval_sec = 30
healthy_threshold = 1
unhealthy_threshold = 10
tcp_health_check {
port = "50000"
}
}