add old values when computing the new InstanceDiff

This was previously done in the RequiresNew code, which is skipped in
new style provider.
pull/19121/head
James Bardin 8 years ago
parent 072f73a381
commit ff4e81cc2b

@ -320,6 +320,17 @@ func (r *Resource) simpleDiff(
return instanceDiff, err
}
// Make sure the old value is set in each of the instance diffs.
// This was done by the RequiresNew logic in the full legacy Diff.
for k, attr := range instanceDiff.Attributes {
if attr == nil {
continue
}
if s != nil {
attr.Old = s.Attributes[k]
}
}
if instanceDiff != nil {
if err := t.DiffEncode(instanceDiff); err != nil {
log.Printf("[ERR] Error encoding timeout to instance diff: %s", err)

Loading…
Cancel
Save