You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apply should go through successfully and warehouse should be updated to 2XLARGE.
Actual Behavior
If I use "2XLARGE" as the warehouse_size value, I get this error:
│ Error: not a valid warehouse size: 2XLARGE
│
│ with snowflake_warehouse.creation_dataset_elt,
│ on warehouses.tf line 101, in resource "snowflake_warehouse" "creation_dataset_elt":
│ 101: warehouse_size = "2XLARGE"
However, if I use the accepted value "xxlarge", Terraform produces drift like this:
Terraform will perform the following actions:
# snowflake_warehouse.creation_dataset_elt will be updated in-place
~ resource "snowflake_warehouse" "wh" {
id = "elt_wh"
name = "elt_wh"
~ warehouse_size = "2XLARGE" -> "xxlarge"
# (12 unchanged attributes hidden)
}
Steps to Reproduce
Create an 2XL warehouse through terraform using any of the values I supplied above ("2XLARGE" or "xxlarge")
How much impact is this issue causing?
High
Logs
No response
Additional Information
This is causing perma-drift in our repo and messes up Spacelift (our Terraform module management software)
The text was updated successfully, but these errors were encountered:
Terraform CLI and Provider Versions
Snowflake provider version 0.68.0
Terraform version 1.5.0
Terraform Configuration
Expected Behavior
Apply should go through successfully and warehouse should be updated to 2XLARGE.
Actual Behavior
If I use
"2XLARGE"
as thewarehouse_size
value, I get this error:However, if I use the accepted value
"xxlarge"
, Terraform produces drift like this:Steps to Reproduce
"2XLARGE"
or"xxlarge"
)How much impact is this issue causing?
High
Logs
No response
Additional Information
This is causing perma-drift in our repo and messes up Spacelift (our Terraform module management software)
The text was updated successfully, but these errors were encountered: