provider/vsphere: Fix gofmt

This commit is contained in:
Paul Hinze 2016-02-25 08:50:02 -06:00
parent 47d0830ccb
commit 9202bc0e1c
1 changed files with 3 additions and 3 deletions

View File

@ -236,8 +236,8 @@ func resourceVSphereVirtualMachine() *schema.Resource {
ForceNew: true,
},
"type" : &schema.Schema{
Type: schema.TypeString,
"type": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Default: "eager_zeroed",
@ -404,7 +404,7 @@ func resourceVSphereVirtualMachineCreate(d *schema.ResourceData, meta interface{
}
if v, ok := disk["type"].(string); ok && v != "" {
disks[i].initType = v
}
}
}
vm.hardDisks = disks
log.Printf("[DEBUG] disk init: %v", disks)