:wave: Hello folks, I’m working on a custom dynami...
# general
a
👋 Hello folks, I’m working on a custom dynamic provider for managing CI/CD resources lifecycle with pulumi. Our vendor (Codefresh) provides API support, so I can implement
create
,
delete
,
update
,
diff
, and
read
methods. That said, I’m still trying to figure out how to handle imports for existing resources. Any thoughts on that?
b
dynamic providers don’t support imports. You’ll need to write a custom resource for that
a
Got it. Thanks.