terraform-provider-google/website/docs/r/compute_snapshot.html.markdown
2018-12-20 17:22:22 -08:00

2.6 KiB

layout page_title sidebar_current description
google Google: google_compute_snapshot docs-google-compute-snapshot Creates a new snapshot of a disk within GCE.

google_compute_snapshot

Creates a new snapshot of a disk within GCE. For more information see the official documentation and API.

Example Usage

resource "google_compute_snapshot" "default" {
  name        = "test-snapshot"
  source_disk = "test-disk"
  zone        = "us-central1-a"

  labels {
    my-label = "my-label-value"
  }
}

Argument Reference

The following arguments are supported:

  • name - (Required) A unique name for the resource, required by GCE. Changing this forces a new resource to be created.

  • zone - (Required) The zone where the source disk is located.

  • source_disk - (Required) The disk which will be used as the source of the snapshot.


Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported: