Hi everyone, I'm not sure if this is the right pla...
# python
m
Hi everyone, I'm not sure if this is the right place but I am seeing something strange using the pulumi snowflake provider during ci preview. I have imported existing stages, pipes, and storage integrations into my state. When I run pulumi preview locally, I am seeing the expected changes that I made to the resources. I have CI set up to run pulumi preview in github actions. In the gh action pulumi preview I am seeing this change showing up on a storage integration. I copied the integration just as it gave it to me after running pulumi import. I have not added these things to it and I am not using azure for anything.
Copy code
snowflake:index:StorageIntegration data_ops_s3_storage_integration update [diff: +azureTenantId,describeOutputs-storageAwsExternalId]
m
Hey @mysterious-painting-48716 It sounds like the Azure/describeOutputs diff only appears in CI? Are you using the Pulumi CLI version and same provider version vs local?
m
yes
I'm not really understanding why it's trying to remove the
storageAwsExternalId
and add
azureTenantId
I ended up running the cd for this and it's showing that these things changed in the pulumi cloud update....but nothing actually changed in Snowflake for this resource. I put up another PR and now the CI isn't showing any changes for this resource which is correct. 😕
m
Sounds like that diff was just Pulumi reconciling the state with Snowflake’s live describe output and that no changes happened.
👍 1