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
As a connivence, Polytomic renames certain connections. While this is helpful in most cases, it causes Terraform to complain about a mismatch in the configurations and the received return value. The error looks something like:
When applying changes to polytomic_snowflake_connection.snowflake, provider "provider[\"registry.terraform.io/polytomic/polytomic\"]" produced an
│ unexpected new value: .name: was cty.StringVal("Snowflake"), but now cty.StringVal("Snowflake Develop").
Ideally, we could set the name attribute as Computed; however, the Required property and the Computed property are mutually exclusive.
The text was updated successfully, but these errors were encountered:
As a connivence, Polytomic renames certain connections. While this is helpful in most cases, it causes Terraform to complain about a mismatch in the configurations and the received return value. The error looks something like:
Ideally, we could set the
name
attribute asComputed
; however, theRequired
property and theComputed
property are mutually exclusive.The text was updated successfully, but these errors were encountered: