-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from Sage-Bionetworks/create-governance-role
Create governance role
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,6 +160,10 @@ GRANT ROLE FAIR TO USER "[email protected]"; | |
GRANT ROLE DPE_OPS TO USER "[email protected]"; | ||
GRANT ROLE DPE_OPS TO USER "[email protected]"; | ||
|
||
GRANT ROLE GOVERNANCE TO USER "[email protected]"; | ||
GRANT ROLE GOVERNANCE TO USER "[email protected]"; | ||
GRANT ROLE GOVERNANCE TO USER "[email protected]"; | ||
|
||
-- Create governance privileges | ||
GRANT ROLE MASKING_ADMIN | ||
TO USER "[email protected]"; | ||
|
@@ -298,6 +302,24 @@ TO ROLE DATA_ENGINEER; | |
-- TO ROLE DATA_ENGINEER; | ||
-- GRANT ALL PRIVILEGES ON ALL STREAMS IN DATABASE SYNAPSE_DATA_WAREHOUSE_DEV | ||
-- TO ROLE DATA_ENGINEER; | ||
GRANT USAGE ON DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT USAGE ON ALL SCHEMAS IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT SELECT ON ALL TABLES IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT SELECT ON ALL VIEWS IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT SELECT ON ALL DYNAMIC TABLES IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT USAGE ON FUTURE SCHEMAS IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT SELECT ON FUTURE TABLES IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT SELECT ON FUTURE VIEWS IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
GRANT SELECT ON FUTURE DYNAMIC TABLES IN DATABASE SYNAPSE_DATA_WAREHOUSE | ||
TO ROLE GOVERNANCE; | ||
|
||
|
||
-- Sage database privileges | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters