Hi :wave: I’m using Typescript and Snowflake Provi...
# typescript
r
Hi 👋 I’m using Typescript and Snowflake Provider. I get a lot of odd behaviour and errors, and it seems it’s mostly due to the order of changes. For example: • I have defined
snowflake.Table
• And also
snowflake.Pipe
referencing said table • The issue becomes when I change columns on Table and select on Pipe • When I run it, the Pipe is trying to be changed, but changes to Table are not applied yet How can I make Pulumi respect the order of operations ?
s
Can you use dependsOn?
r
Forgot to mention, dependsOn does not work. It works in a sense that in the log, Table is trying to be updated first, but it’s not, and the SQL to alter it is never sent to Snowflake, pipe creation still executes and fails.
s
I see, I'm pretty new to this.