https://pulumi.com logo
b

best-xylophone-83824

08/20/2019, 12:43 PM
terraform providers have a nice property that they can be replaced with a custom compiled binary. Am I right that Pulumi pulls TF providers as a dependency and to achieve same result (== quick local bugfix), I'd need to recompile Pulumi provider ?
w

white-balloon-205

08/21/2019, 4:47 AM
Yes - you can replace the plugin with a locally compiled binary just by dropping a file on your path with the name
pulumi-resource-cloudflare
where
cloudflare
is the name of the resource kind you want to handle (the first part of the URN used to register resources - typically embedded in the language SDK you are using, but you could manually call
pulumi.runtime.registerResource
as well if you want).