Add disk size to google_compute_instance disk blocks.

This commit is contained in:
Nolan Darilek 2015-03-24 11:45:20 -05:00
parent d3135c1b2b
commit 9d75fa72ab
2 changed files with 14 additions and 0 deletions

View File

@ -74,6 +74,12 @@ func resourceComputeInstance() *schema.Resource {
Optional: true,
ForceNew: true,
},
"size": &schema.Schema{
Type: schema.TypeInt,
Optional: true,
ForceNew: true,
},
},
},
},
@ -331,6 +337,11 @@ func resourceComputeInstanceCreate(d *schema.ResourceData, meta interface{}) err
disk.InitializeParams.DiskType = diskType.SelfLink
}
if v, ok := d.GetOk(prefix + ".size"); ok {
diskSizeGb := v.(int)
disk.InitializeParams.DiskSizeGb = int64(diskSizeGb)
}
disks = append(disks, &disk)
}

View File

@ -93,6 +93,9 @@ The `disk` block supports:
* `type` - (Optional) The GCE disk type.
* `size` - (Optional) The size of the image in gigabytes. If not specified,
it will inherit the size of its base image.
The `network_interface` block supports:
* `network` - (Required) The name of the network to attach this interface to.