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
This commit is contained in:
parent
9270af6dfa
commit
bc1baa8712
|
@ -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{
|
||||
|
|
Loading…
Reference in New Issue