From 949c3841713f287f2cefb2a0c7de4237fe0ed78c Mon Sep 17 00:00:00 2001 From: Derek Goss Date: Sun, 6 Mar 2016 21:44:55 -0500 Subject: [PATCH] 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 --- r/compute_instance_template.html.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/r/compute_instance_template.html.markdown b/r/compute_instance_template.html.markdown index 9a51d03b..c9a00c1e 100644 --- a/r/compute_instance_template.html.markdown +++ b/r/compute_instance_template.html.markdown @@ -138,6 +138,9 @@ The `disk` block supports: * `disk_type` - (Optional) The GCE disk type. Can be either `"pd-ssd"`, `"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 `"PERSISTENT"`.