Create an instance with a shutdown script for Apache server

Create an instance with a shutdown script for Apache server

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_instance" "default" {  name = "instance-name-shutdown-content-directly"  machine_type = "f1-micro"  zone = "us-central1-c"  metadata = {  # Shuts down Apache server  shutdown-script = "#! /bin/bash /etc/init.d/apache2 stop"  }  boot_disk {  initialize_params {  image = "debian-cloud/debian-11"  }  }  network_interface {  # A default network is created for all Google Cloud projects  network = "default"  access_config {  }  } }

What's next

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