Is there a shareable dynamic resource provider? Th...
# general
f
Is there a shareable dynamic resource provider? The article here (https://www.pulumi.com/docs/intro/concepts/resources/dynamic-providers/) mentions a third kind of a shareable resource provider, but I can't find information on how to build one. "The third type of resource provider is shareable."
w
It is a bit confusing, but that paragraph is talking about resource providers in general with one type being the dynamic provider described on the rest of the page. The “third type of resource provider” mentioned is a standard resource provider. For example, you can write your own native provider (see https://github.com/pulumi/pulumi-provider-boilerplate) then share it via something like artifactory or similar.
f
Thanks, that makes things clear for me!