Skip to content

Commit

Permalink
Enable PlanResourceChange by default (#606)
Browse files Browse the repository at this point in the history
Part of pulumi/pulumi-terraform-bridge#1785

Enable the bridge feature for auth0
  • Loading branch information
VenelinMartinov authored Jul 16, 2024
1 parent 2b5cd05 commit 0cbaf39
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ var metadata []byte

func Provider() tfbridge.ProviderInfo {
p := shimv2.NewProvider(auth0Shim.NewProvider(),
shimv2.WithPlanResourceChange(func(tfResourceType string) bool {
return tfResourceType == "auth0_connection"
}))
shimv2.WithPlanResourceChange(func(string) bool { return true }))

prov := tfbridge.ProviderInfo{
P: p,
Expand Down

0 comments on commit 0cbaf39

Please sign in to comment.