From a28267b886409413f8ad7eec62185607ef37f86c Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Fri, 8 May 2015 12:16:54 -0500 Subject: [PATCH] provider/aws: SG description should be ForceNew Description cannot be handled in Update (there is no ModifySecurityGroup API call), so we have to recreate to change the description. Closes #1870 --- builtin/providers/aws/resource_aws_security_group.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/providers/aws/resource_aws_security_group.go b/builtin/providers/aws/resource_aws_security_group.go index 67648787d..f87d7b2f5 100644 --- a/builtin/providers/aws/resource_aws_security_group.go +++ b/builtin/providers/aws/resource_aws_security_group.go @@ -32,6 +32,7 @@ func resourceAwsSecurityGroup() *schema.Resource { "description": &schema.Schema{ Type: schema.TypeString, Optional: true, + ForceNew: true, Default: "Managed by Terraform", },