Configure static IP addresses on VM creation in a MIG

Configure static IP addresses on VM creation 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_region_per_instance_config" "default" {  region_instance_group_manager = google_compute_region_instance_group_manager.default.name  region = google_compute_region_instance_group_manager.default.region  name = "proxy-node-03-ip"  preserved_state {  internal_ip {  interface_name = "nic0"  auto_delete = "NEVER"  ip_address {  address = google_compute_address.default.id  }  }  } }

What's next

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