github.com/weaviate/weaviate@v1.24.6/test/benchmark/remote/terraform/vm.tf (about)

     1  resource "google_compute_instance" "default" {
     2    name         = "automated-loadtest"
     3    machine_type = var.machine_type
     4    zone         = "us-central1-a"
     5  
     6    tags = ["automated-loadtest"]
     7  
     8    boot_disk {
     9      initialize_params {
    10        image = "debian-cloud/debian-11"
    11        size = 100
    12        type = "pd-ssd"
    13      }
    14    }
    15  
    16    network_interface {
    17      network = "default"
    18  
    19      access_config {
    20        // Ephemeral public IP
    21      }
    22    }
    23  }