Nikzad Khani
02/01/2022, 8:15 PMHarshith (Airbyte)
02/02/2022, 4:23 AMHarshith (Airbyte)
02/02/2022, 4:24 AMNikzad Khani
02/02/2022, 2:17 PMALTER
command is run. It would easiest if you could tell me the specific permissions the role would need. Right now I am just granting the same permissions as the root user to airbyte (GRANT root TO airbyte
) which is not ideal since the airbyte user should have only access to what it needs to rather than everything.
I think the easiest solution is for you to give me a short 3 or 4 line SQL script that creates some role with the proper permissions.Nikzad Khani
02/03/2022, 2:11 PMHarshith (Airbyte)
02/03/2022, 2:26 PMNikzad Khani
02/23/2022, 7:56 PMMarcos Marx (Airbyte)
02/23/2022, 8:04 PMselect * from information_schema.role_table_grants where grantee='docker';
insert, select, update, delete, truncate, references
select * from pg_tables where tableowner = 'docker';
tableowner
basically the airbyte users needs to be an admin to create or delete data, and be able to create the right schemas.