Simone P. M.

Results 4 comments of Simone P. M.

This is happening to me as well. When creating a share like follows: resource "snowflake_share" "" { name = "" } The share is correctly created, but on the next...

For future reference: https://community.snowflake.com/s/article/show-shares-command-ui-data-sharing-changes

I see there is a pull request on the go to solve this issue: https://github.com/Snowflake-Labs/terraform-provider-snowflake/pull/1072

Issue still present in 0.77.0 ``` resource "snowflake_grant_privileges_to_role" "TEST" { privileges = ["IMPORTED PRIVILEGES"] role_name = "ROLE" on_account_object { object_type = "DATABASE" object_name = "SNOWFLAKE" } } ``` After granting...