Create a health check for autohealing in MIGs

The sample creates a global health check which you use to configure autohealing in a managed instance group (MIG).

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

Terraform

To learn how to apply or remove a Terraform configuration, see Basic Terraform commands. For more information, see the Terraform provider reference documentation.

resource "google_compute_http_health_check" "default" {
  name                = "example-check"
  timeout_sec         = 10
  check_interval_sec  = 30
  healthy_threshold   = 1
  unhealthy_threshold = 3
  port                = 80
}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.