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.

gefragt vor einem Jahr229 Aufrufe
1 Antwort
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
EXPERTE
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen