This message was deleted.
# python
s
This message was deleted.
g
Sorry I missed this! Generally, when I run into that kind of error in Pulumi with Python, it's an asyncio issue where I'm not setting my resource dependencies right using the
depends_on
flag. The first run (or three) fail, but then the stars align and everything gets created in the right order. I'd check to see if you need anything to get deployed in a specific order, and then use the
depends_on
flag to make that happen. Let me know if that makes sense!