Set stateful metadata on VM instance creation in a MIG

In a managed instance group (MIG), create a managed instance with a custom name and set stateful metadata on that VM.

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_per_instance_config" "default" {
  instance_group_manager = google_compute_instance_group_manager.default.name
  zone                   = google_compute_instance_group_manager.default.zone
  name                   = "node-12"
  preserved_state {
    metadata = {
      mode    = "active"
      logging = "elaborate"
    }
  }
}

What's next

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