We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba37ad commit 848ee9fCopy full SHA for 848ee9f
.changelog/1024.txt
@@ -0,0 +1,3 @@
1
+```release-note:bug
2
+helper/schema: Ensured `RawConfig`, `RawPlan`, and `RawState` are correctly copied during planning with recreation
3
+```
helper/schema/schema.go
@@ -722,6 +722,9 @@ func (m schemaMap) Diff(
722
723
// Preserve the DestroyTainted flag
724
result2.DestroyTainted = result.DestroyTainted
725
+ result2.RawConfig = result.RawConfig
726
+ result2.RawPlan = result.RawPlan
727
+ result2.RawState = result.RawState
728
729
// Reset the data to not contain state. We have to call init()
730
// again in order to reset the FieldReaders.
0 commit comments