-
Notifications
You must be signed in to change notification settings - Fork 420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: snowflake_account resource error due to 2024_06 bundle change #3016
Comments
Hey @sbrudz 👋 |
Excellent! Thank you, @sfc-gh-jcieslak! |
@sfc-gh-jcieslak thanks for the prompt response! As far as you know, is there an official policy to align the release of this provider with the official Snowflake releases? I'm creating an internal process around Snowflake updates. |
Hey @marcofunaro. You are right, there is no alignment currently. We will discuss the release's cadence after reaching a stable V1. |
do you want me to open an issue for tracking purposes? |
As a side note, we have also encountered this issue and it was very hard to debug. |
Hey all 👋 @marcofunaro I think there's no need for that. We are aware of the issue and will communicate to you any decision we'll make on that most likely through GitHub discussions. @asafcyclops Thank You for pointing this out, we already created a task for that and will try to address it as part of the next release. |
Confirming that the issue is fixed for us after upgrading to v0.95.0. Thank you, @sfc-gh-jcieslak! |
Oh I wanted to close the ticket since there was no answer from you side for a long time 😅, but now I saw you responded just now, great to hear it works. Closing. |
Terraform CLI Version
1.8.5
Terraform Provider Version
0.94.1
Terraform Configuration
Category
category:sdk
Object type(s)
resource:account
Expected Behavior
Running
terraform apply
on the above configuration and confirming the plan should create a new account and complete without error.Actual Behavior
As of 8/27, when I run
terraform apply
and confirm the plan, I get the following error:The account does get created, but the state isn't saved because of the error.
Steps to Reproduce
To reproduce the error:
SELECT SYSTEM$SHOW_ACTIVE_BEHAVIOR_CHANGE_BUNDLES();
to check that the2024_06
bundle is enabled in your account. If not, runSELECT SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE('2024_06');
terraform apply
and confirm the planHow much impact is this issue causing?
Medium
Logs
https://gist.github.com/sbrudz/363aedc61c209e86958e67d2aad3350a
Additional Information
The 2024_06 bundle became enabled by default on August 26-27. This bundle changes the behavior of the
SHOW ORGANIZATION ACCOUNTS
command.The workaround is to disable the 2024_06 bundle:
It seems like this could be fixed by using
SHOW ACCOUNTS
instead ofSHOW ORGANIZATION ACCOUNTS
within the Accounts SDK.Would you like to implement a fix?
The text was updated successfully, but these errors were encountered: