This message was deleted.
# general
s
This message was deleted.
b
Pulumi has a concept for this called Pulumi Packages: https://www.pulumi.com/docs/guides/pulumi-packages/ In your case you would probably define a "Component Package." If you didn't want to go to the effort of needing a pulumi schema so that you can expose your component package in all pulumi languages, like if you only need the package to support the 1 language you are using, you can just publish a package that exposes
ComponentResource
implementations the same way you would publish any other package in your language of choice. Then the consuming project can provision those component resources as you would any other provider defined resource.
☝️ 1
🙌 1
f
awesome, thanks!