Merge pull request #1871 from hashicorp/b-aws-sg-description-force-new

provider/aws: SG description should be ForceNew
This commit is contained in:
Paul Hinze 2015-05-08 12:24:18 -05:00
commit edd108e2cc
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ func resourceAwsSecurityGroup() *schema.Resource {
"description": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Default: "Managed by Terraform",
},