Skip to content

What Postgres permissions does Airbyte need for external Postgres as metadata store? #39519

Discussion options

You must be logged in to vote

Okay, here is my final psql script, basically I granted all privileges

create user airbyte_user with encrypted password 'xxx';

create database airbyte_db;
create database temporal_db;
create database temporal_visibility_db;

grant all privileges on database airbyte_db to airbyte_user;
grant all privileges on database temporal_db to airbyte_user;
grant all privileges on database temporal_visibility_db to airbyte_user;

\connect airbyte_db
grant all privileges on schema public to airbyte_user;

\connect temporal_db
grant all privileges on schema public to airbyte_user;

\connect temporal_visibility_db
grant all privileges on schema public to airbyte_user;

Note in my case, my Helm chart cu…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by hongbo-miao
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant