Jan Cieślak

Results 378 comments of Jan Cieślak

Hey @dmfay I don't think that provider limitation, but rather a Snowflake one. Please check [the documentation](https://docs.snowflake.com/en/sql-reference/sql/grant-privilege#restrictions-and-limitations) on the limitations of granting privileges. If that's the case, please close the...

Closing as this is Snowflake's limitation and the provider one.

Hey @nicolamarangoni 👋 This looks like a Snowflake error indicating you have insufficient privileges rather than a TF Provider issue. If you used other role than ACCOUNTADMIN to create/modify the...

Ok, I didn't analyze it in-depth, but this looks like it's related to this issue - https://github.com/Snowflake-Labs/terraform-provider-snowflake/issues/2356. So, the issue may be happening, because there's a default value set on...

Hey @nicolamarangoni. We have released the fix as part of the [v0.87.0](https://github.com/Snowflake-Labs/terraform-provider-snowflake/releases/tag/v0.87.0) release (latest version is [v0.87.2](https://github.com/Snowflake-Labs/terraform-provider-snowflake/releases/tag/v0.87.2)). Please follow the [migration guide](https://github.com/Snowflake-Labs/terraform-provider-snowflake/blob/v0.87.0/MIGRATION_GUIDE.md#v0860--v0870) during the update. Please confirm that the issue...

Hey @nicolamarangoni That's strange, but even if possibly something changed, this configuration should work for you afaik. Please try and let me know if that helped. ```terraform resource "snowflake_database" "..."...

Hmm, what is logged then? If you're getting this Snowflake error (`[errors.go:17] object does not exist or not authorized`), then it's indicating you are probably referencing something that is not...

Here's an example configuration for sharing that works ```terraform # Account 1 resource "snowflake_share" "test" { provider = snowflake.sharing # provider configuration that connects to secondary account name = "sharing_test_share"...

Yes, that's what It said in the example. You should put account locator to the `provider` field and not `orgname` + `account name` like right now. Call `select current_account()` on...

Yes, after the update the input of `provider` is properly quoted. Without previous quoting things like `organization.accountname` formats were accepted, but it was happened rather "by accident". Please use the...