Merge pull request #1284 from ndarilek/add-size-to-instance-disk

Add size option to disk blocks under google_compute_instance
This commit is contained in:
Mitchell Hashimoto 2015-03-26 10:13:11 -07:00
commit deb5052454
2 changed files with 14 additions and 0 deletions

View File

@ -74,6 +74,12 @@ func resourceComputeInstance() *schema.Resource {
Optional: true, Optional: true,
ForceNew: 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 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) disks = append(disks, &disk)
} }

View File

@ -93,6 +93,9 @@ The `disk` block supports:
* `type` - (Optional) The GCE disk type. * `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: The `network_interface` block supports:
* `network` - (Required) The name of the network to attach this interface to. * `network` - (Required) The name of the network to attach this interface to.