gray-art-92380
09/19/2025, 1:43 PMterraform-snowflake-provider and they fixed it and updated to 2.7.0
pulumi-snowflake updated from 2.5.0 -> 2.6.0
I am trying to update my pulumi-snowflake version to the latest one which is 2.6.0 .
Inside that update there was a PR that was merged to update the terraform-snowflake-provider to 2.7.0
my requirements.txt points to pulumi-snowflake==2.6.0
I cleared the pip cache, removed the plugin from pulumi
but when I do pulumi up, it forces it to install 2.5.0 :
would anyone know why?echoing-dinner-19531
09/19/2025, 1:49 PMgray-art-92380
09/19/2025, 1:57 PMfuture-hairdresser-70637
09/19/2025, 2:09 PMup with 2.5.0 and you have a resource in your stack (and thus state), then you upgrade to 2.7.0, the program will need both 2.5.0 and 2.7.0 downloaded and present.
you may have simultaneously updated the provider to 2.7.0 as well as deleted resources created by 2.5.0. the CLI can't tell, so it precaches 2.5.0 just in case those affected resources need to be deleted.
ideal outcome is you should not have to do anything here aside from have a successful up . does the preview show a concerning diff?gray-art-92380
09/19/2025, 2:18 PMpulumi-snowflake to 2.6.0 which should be pointing to the latest terraform-snowflake-provider
here you can see the snowflake provider is 2.5.0 but we can see the terraform snowflake provider is at 2.7.0future-hairdresser-70637
09/19/2025, 2:20 PMgray-art-92380
09/19/2025, 2:21 PMpip freeze | grep pulumi :
pulumi==3.197.0
pulumi_aws==7.6.0
pulumi_command==1.1.0
pulumi_snowflake==2.6.0echoing-dinner-19531
09/19/2025, 2:47 PMechoing-dinner-19531
09/19/2025, 2:53 PMgray-art-92380
09/19/2025, 3:19 PMpulumi up for a create, just did the command, RegsiterResource not found in the logsshy-arm-32391
09/19/2025, 3:42 PMupstream is updated to point to that hash: https://github.com/pulumi/pulumi-snowflake/pull/976/files#diff-1581e27de87bffae0bd4d745cd7964e68528d7a83e2e4c259a782d275df6f558
β’ You wouldn't see this in the provider's go.mod because it's there via replace.gray-art-92380
09/19/2025, 3:43 PMshy-arm-32391
09/19/2025, 3:43 PMgray-art-92380
09/19/2025, 3:44 PM2.5.0 pluginshy-arm-32391
09/19/2025, 3:47 PMRegisterResource call in your logs
what happens if you run pulumi install?
and are there any explicit providers with pinned versions in your state?shy-arm-32391
09/19/2025, 3:48 PMgray-art-92380
09/19/2025, 3:48 PMshy-arm-32391
09/19/2025, 3:49 PMgray-art-92380
09/19/2025, 3:50 PMgray-art-92380
09/19/2025, 3:50 PMshy-arm-32391
09/19/2025, 3:51 PMshy-arm-32391
09/19/2025, 3:51 PMpip install at the right time, so your Python SDK was still the old one.gray-art-92380
09/19/2025, 3:51 PMgray-art-92380
09/19/2025, 3:52 PMshy-arm-32391
09/19/2025, 3:55 PMechoing-dinner-19531
09/19/2025, 3:58 PMgray-art-92380
09/19/2025, 4:00 PMpip install here also did the logtostrderr too here