Redshift serverless

0

How to restrict user under redshift cluster to access db and schemas, can you share steps to configure it. Also how to create roles according to above scenario.

feita há um ano229 visualizações
1 Resposta
0

The first step is to create a new user who will have restricted access.

CREATE USER newuser PASSWORD 'password';

Next, you can create a new schema that this user will have access to

CREATE SCHEMA newschema;
GRANT USAGE ON SCHEMA newschema TO newuser;
GRANT SELECT ON TABLE newschema.newtable TO newuser;

Roles in Redshift are a way to manage privileges for groups of users.

CREATE GROUP newgroup;
ALTER GROUP newgroup ADD USER newuser;

Now you can grant privileges to the group, and all users in the group will have those privileges.

GRANT SELECT ON TABLE newschema.newtable TO GROUP newgroup;

You can refer the following link

https://docs.aws.amazon.com/redshift/latest/dg/c_redshift-sql.html

profile picture
ESPECIALISTA
respondido há um ano

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas