FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

google_compute_https_health_check

Manages an HTTPS health check within GCE. This is used to monitor instances behind load balancers. Timeouts or HTTPS errors cause the instance to be removed from the pool. For more information, see the official documentation and API.

Example Usage

resource "google_compute_https_health_check" "default" {
  name         = "test"
  request_path = "/health_check"

  timeout_sec        = 1
  check_interval_sec = 1
}

Argument Reference

The following arguments are supported:


Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io