From a362a979794aa11b8fa9680bccec1bb2de012a00 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 10 Oct 2014 17:14:35 -0700 Subject: [PATCH] providers/aws: forcenew on SGs for now [GH-299] --- builtin/providers/aws/resource_aws_instance.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/providers/aws/resource_aws_instance.go b/builtin/providers/aws/resource_aws_instance.go index 69f4bb3483..10e58ccea4 100644 --- a/builtin/providers/aws/resource_aws_instance.go +++ b/builtin/providers/aws/resource_aws_instance.go @@ -92,6 +92,7 @@ func resourceAwsInstance() *schema.Resource { Type: schema.TypeSet, Optional: true, Computed: true, + ForceNew: true, Elem: &schema.Schema{Type: schema.TypeString}, Set: func(v interface{}) int { return hashcode.String(v.(string))