This message was deleted.
# general
s
This message was deleted.
f
I will soon have a similar problem. I thought that maybe you should first use one of the get functions to fetch the resource, and only try create it if the fetch errors. I don’t know though if the error during the initial get won’t stop the deployment run
g
problem is only with update/delete for running crawlers depending on extra "get function to fetch the resource" might hit the same issues - function returns that crawler is idle and a moment later this crawler is running, and pulumi returns "Cannot update Crawler while running" error one of my ideas was to use dynamic resource https://www.pulumi.com/docs/concepts/resources/dynamic-providers/ to handle crawlers in a custom way using boto3 (I use Python code for pulumi)
ideally, I'd rather use built-in mechanisms than write something on my own