Created
February 5, 2019 12:19
-
-
Save sankars/ec6cc54daeefa0d3ab5a3ccf9a1bb0f3 to your computer and use it in GitHub Desktop.
Sentry Commands via Beeline
This file contains hidden or 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
CREATE ROLE role_name | |
GRANT privilege ON object_type object_name TO ROLE role_name [WITH GRANT OPTION] | |
GRANT ROLE role_name TO GROUP group_name | |
REVOKE privilege ON object_type object_name FROM [ROLE] role_name | |
REVOKE ROLE role_name FROM GROUP group_name | |
DROP ROLE role_name | |
SET ROLE role_name | |
SET ROLE NONE | |
SET ROLE ALL | |
SHOW ROLES | |
SHOW CURRENT ROLES | |
SHOW ROLE GRANT GROUP group_name | |
SHOW GRANT ROLE | |
SHOW GRANT ROLE ON object_type object_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment