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
This commit is contained in:
Paul Hinze 2015-05-08 12:16:54 -05:00
parent e9162fd6ba
commit a28267b886
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",
},