https://pulumi.com logo
a

astonishing-exabyte-93491

06/05/2023, 1:33 PM
👋 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

billowy-army-68599

06/05/2023, 1:54 PM
dynamic providers don’t support imports. You’ll need to write a custom resource for that
a

astonishing-exabyte-93491

06/05/2023, 1:55 PM
Got it. Thanks.