diff --git a/provider/resources.go b/provider/resources.go index 30d9cd99e5f..19e55dad87c 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -822,11 +822,7 @@ func ProviderFromMeta(metaInfo *tfbridge.MetadataInfo) *tfbridge.ProviderInfo { ctx := context.Background() upstreamProvider := newUpstreamProvider(ctx) - v2p := shimv2.NewProvider(upstreamProvider.SDKV2Provider, - shimv2.WithDiffStrategy(shimv2.PlanState), - shimv2.WithPlanResourceChange(func(string) bool { - return true - })) + v2p := shimv2.NewProvider(upstreamProvider.SDKV2Provider) p := pftfbridge.MuxShimWithDisjointgPF(ctx, v2p, upstreamProvider.PluginFrameworkProvider)