Does Pulumi provide a arbitrary way to call a cust...
# general
f
Does Pulumi provide a arbitrary way to call a custom REST api to create custom resources which then can be managed or would this be a good use case to create a dynamic provider in my project?
g
Yes it does, you can inherit from CustomResource and pass something of your own that implements ResourceProvider (or ProviderResource, not sure of the name)
b
Dynamic Providers - check out azure-ts-dynamicprovider in the examples repo
f
Awesome thanks guys!