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 e295e17 commit 67bd255Copy full SHA for 67bd255
pkg/controller/external_tfpluginfw.go
@@ -279,7 +279,7 @@ func (n *terraformPluginFrameworkExternalClient) getDiffPlanResponse(ctx context
279
// parametrizable attributes.
280
filteredDiff := make([]tftypes.ValueDiff, 0)
281
for _, diff := range rawDiff {
282
- if diff.Value1.IsKnown() && !diff.Value1.IsNull() {
+ if diff.Value1 != nil && diff.Value1.IsKnown() && !diff.Value1.IsNull() {
283
filteredDiff = append(filteredDiff, diff)
284
}
285
0 commit comments