get resource works

This commit is contained in:
Alex Bezdieniezhnykh
2024-11-13 00:24:09 +02:00
parent ddbf8114ba
commit 4445fcd673
6 changed files with 58 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
create database azaion;
-- make sure you connect to azaion db
--superadmin user (only for db managing)
create role azaion_superadmin with login password 'superadmin-pass';
grant all on schema public to azaion_superadmin;
--writer user
create role azaion_admin with login password 'admin-pass';
grant connect on database azaion to azaion_admin;
grant usage on schema public to azaion_admin;
--readonly user
create role azaion_reader with login password 'readonly-pass';
grant connect on database azaion to azaion_reader;
grant usage on schema public to azaion_reader;