From bc1baa871219dcfb244d529b6bb22f055d45c7a5 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Thu, 5 Mar 2015 19:04:52 -0600 Subject: [PATCH] providers/aws: final_snapshot_id isn't ForceNew Removing `ForceNew` from `final_snapshot_identifier` - it's a parameter that's _only_ passed during the DeleteDBInstance API call, so it's perfectly valid to change the attribute for an existing DB Instance. fixes #1138 --- builtin/providers/aws/resource_aws_db_instance.go | 1 - 1 file changed, 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_db_instance.go b/builtin/providers/aws/resource_aws_db_instance.go index b57dc13f3..e99744a0f 100644 --- a/builtin/providers/aws/resource_aws_db_instance.go +++ b/builtin/providers/aws/resource_aws_db_instance.go @@ -156,7 +156,6 @@ func resourceAwsDbInstance() *schema.Resource { "final_snapshot_identifier": &schema.Schema{ Type: schema.TypeString, Optional: true, - ForceNew: true, }, "db_subnet_group_name": &schema.Schema{