From 283cac0a8b4cd9d1ebfd45b2b3d11cc55de422c6 Mon Sep 17 00:00:00 2001 From: ewypych Date: Wed, 14 Jun 2017 12:51:20 +0200 Subject: [PATCH] change default adapter_type to lsiLogic --- vsphere/resource_vsphere_virtual_disk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vsphere/resource_vsphere_virtual_disk.go b/vsphere/resource_vsphere_virtual_disk.go index a17d43d5c..271f737ec 100644 --- a/vsphere/resource_vsphere_virtual_disk.go +++ b/vsphere/resource_vsphere_virtual_disk.go @@ -63,7 +63,7 @@ func resourceVSphereVirtualDisk() *schema.Resource { Type: schema.TypeString, Optional: true, ForceNew: true, - Default: "ide", + Default: "lsiLogic", ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) { value := v.(string) if value != "ide" && value != "busLogic" && value != "lsiLogic" {