Replies: 2 comments 2 replies
-
|
What is a good access grant to allow for dbt run locally for development but not with ownership access to the schema where they can also grant schema object access to the others |
Beta Was this translation helpful? Give feedback.
-
|
@y-tee , all schemas created by SnowDDL have flag "WITH MANAGED ACCESS". It means SnowDDL admin role controls access. You may read more about it here: https://docs.snowflake.com/en/sql-reference/sql/create-schema#optional-parameters So if DBT creates an object in such schema, it won't be able to change its permissions. Make sure to set flag "is_sandbox: true" for schema with objects created by external forces. Otherwise SnowDDL will try to delete it, since new objects do not exist in config. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I need the ability to create table, but seems like the write role only writes, and it does not allow table creation. How do i implement this in snowddl without granting OWNERSHIP? since ownership will allow the role to grant future objects of the schema to other people as well
Beta Was this translation helpful? Give feedback.
All reactions