From aa5d02104c8efe95b61433fb9eb8cb77f46fce45 Mon Sep 17 00:00:00 2001 From: Sander van Harmelen Date: Fri, 23 Oct 2015 09:54:54 +0200 Subject: [PATCH] Add `computed` flag to the `network_domain` parameter Without this flag you will get a diff based on the `network_domain` parameter, if you not specify the parameter. --- builtin/providers/cloudstack/resource_cloudstack_vpc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/providers/cloudstack/resource_cloudstack_vpc.go b/builtin/providers/cloudstack/resource_cloudstack_vpc.go index 07502e58e..d99a4042a 100644 --- a/builtin/providers/cloudstack/resource_cloudstack_vpc.go +++ b/builtin/providers/cloudstack/resource_cloudstack_vpc.go @@ -43,6 +43,7 @@ func resourceCloudStackVPC() *schema.Resource { "network_domain": &schema.Schema{ Type: schema.TypeString, Optional: true, + Computed: true, ForceNew: true, },