Created
May 13, 2019 18:06
-
-
Save sankalpk/2d7d49ed073217402db8e94af1fa481a to your computer and use it in GitHub Desktop.
Create Redshift Read Only User
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 GROUP ro_group; | |
CREATE USER <user_name> WITH password '<password>'; | |
ALTER GROUP ro_group ADD USER <user_name>; | |
GRANT USAGE ON SCHEMA "public" TO GROUP ro_group; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment