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.

질문됨 일 년 전227회 조회
1개 답변
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
전문가
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠