From 318310c01986d4b6e0b5d2481c707a77af18e627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Can=C3=A9vet?= Date: Mon, 27 Jun 2016 09:57:21 +0200 Subject: [PATCH] Remove Computed flag --- builtin/providers/cloudstack/resource_cloudstack_instance.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/builtin/providers/cloudstack/resource_cloudstack_instance.go b/builtin/providers/cloudstack/resource_cloudstack_instance.go index bb8d592da..f8baffd2c 100644 --- a/builtin/providers/cloudstack/resource_cloudstack_instance.go +++ b/builtin/providers/cloudstack/resource_cloudstack_instance.go @@ -92,7 +92,6 @@ func resourceCloudStackInstance() *schema.Resource { "security_group_ids": &schema.Schema{ Type: schema.TypeSet, Optional: true, - Computed: true, ForceNew: true, Elem: &schema.Schema{Type: schema.TypeString}, Set: schema.HashString, @@ -102,7 +101,6 @@ func resourceCloudStackInstance() *schema.Resource { "security_group_names": &schema.Schema{ Type: schema.TypeSet, Optional: true, - Computed: true, ForceNew: true, Elem: &schema.Schema{Type: schema.TypeString}, Set: schema.HashString,