2014-08-26 23:50:29 +02:00
|
|
|
---
|
|
|
|
layout: "google"
|
|
|
|
page_title: "Google: google_compute_disk"
|
2015-10-23 16:10:41 +02:00
|
|
|
sidebar_current: "docs-google-compute-disk"
|
2014-10-22 05:21:56 +02:00
|
|
|
description: |-
|
|
|
|
Creates a new persistent disk within GCE, based on another disk.
|
2014-08-26 23:50:29 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# google\_compute\_disk
|
|
|
|
|
|
|
|
Creates a new persistent disk within GCE, based on another disk.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
```js
|
2014-08-26 23:50:29 +02:00
|
|
|
resource "google_compute_disk" "default" {
|
2016-04-10 23:34:15 +02:00
|
|
|
name = "test-disk"
|
|
|
|
type = "pd-ssd"
|
|
|
|
zone = "us-central1-a"
|
|
|
|
image = "debian7-wheezy"
|
2014-08-26 23:50:29 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 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 this disk will be available.
|
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
- - -
|
|
|
|
|
|
|
|
* `image` - (Optional) The image from which to initialize this disk. Either the
|
|
|
|
full URL, a contraction of the form "project/name", or just a name (in which
|
|
|
|
case the current project is used).
|
|
|
|
|
|
|
|
* `project` - (Optional) The project in which the resource belongs. If it
|
|
|
|
is not provided, the provider project is used.
|
2014-08-26 23:50:29 +02:00
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
* `size` - (Optional) The size of the image in gigabytes. If not specified, it
|
|
|
|
will inherit the size of its base image.
|
2015-04-08 13:41:47 +02:00
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
* `snapshot` - (Optional) Name of snapshot from which to initialize this disk.
|
2014-08-26 23:50:29 +02:00
|
|
|
|
2014-10-07 06:59:09 +02:00
|
|
|
* `type` - (Optional) The GCE disk type.
|
|
|
|
|
2014-08-26 23:50:29 +02:00
|
|
|
## Attributes Reference
|
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
In addition to the arguments listed above, the following computed attributes are
|
|
|
|
exported:
|
2014-08-26 23:50:29 +02:00
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
* `self_link` - The URI of the created resource.
|