Added disk_size_gb documentation to resource "google_compute_instance_template"

This was missing in the docs yet was implemented in Terraform. See line 81 in https://github.com/hashicorp/terraform/blob/master/builtin/providers/google/resource_compute_instance_template.go
This commit is contained in:
Derek Goss 2016-03-06 21:44:55 -05:00
parent 3eb0a95f53
commit 91204cf7eb
1 changed files with 3 additions and 0 deletions

View File

@ -138,6 +138,9 @@ The `disk` block supports:
* `disk_type` - (Optional) The GCE disk type. Can be either `"pd-ssd"`, * `disk_type` - (Optional) The GCE disk type. Can be either `"pd-ssd"`,
`"local-ssd"`, or `"pd-standard"`. `"local-ssd"`, or `"pd-standard"`.
* `disk_size_gb` - (Optional) The size of the image in gigabytes. If not specified,
it will inherit the size of its base image.
* `type` - (Optional) The type of GCE disk, can be either `"SCRATCH"` or * `type` - (Optional) The type of GCE disk, can be either `"SCRATCH"` or
`"PERSISTENT"`. `"PERSISTENT"`.