FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

google_compute_disk

Creates a new persistent disk within GCE, based on another disk.

Example Usage

resource "google_compute_disk" "default" {
  name  = "test-disk"
  type  = "pd-ssd"
  zone  = "us-central1-a"
  image = "debian7-wheezy"
}

Argument Reference

The following arguments are supported:


Attributes Reference

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


See the source of this document at Terraform.io