google_compute_snapshot

To get more information about Snapshot, see:

Example Usage

#by name 
data "google_compute_snapshot" "snapshot" {
  name    = "my-snapshot"
}

# using a filter
data "google_compute_snapshot" "latest-snapshot" {
  filter      = "name != my-snapshot"
  most_recent = true
}

Argument Reference

The following arguments are supported:


Attributes Reference

See google_compute_snapshot resource for details of the available attributes.