Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.6.0.020-orioledb"
postgres17: "17.6.1.063"
postgres15: "15.14.1.063"
postgresorioledb-17: "17.6.0.021-orioledb"
postgres17: "17.6.1.064"
postgres15: "15.14.1.064"

# Non Postgres Extensions
pgbouncer_release: 1.19.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ alter user supabase_admin with superuser createdb createrole replication bypass
create user supabase_replication_admin with login replication;

-- Supabase etl user
create user supabase_etl_admin with login replication;
create user supabase_etl_admin with login replication bypassrls;
grant pg_read_all_data to supabase_etl_admin;
grant create on database postgres to supabase_etl_admin;

Expand Down
2 changes: 1 addition & 1 deletion nix/tests/expected/roles.out
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ order by rolname;
service_role | f | f | f | t | f | f | -1 | t |
supabase_admin | t | t | t | t | t | t | -1 | t |
supabase_auth_admin | t | t | f | f | f | f | -1 | f |
supabase_etl_admin | f | t | f | t | f | t | -1 | f |
supabase_etl_admin | f | t | f | t | f | t | -1 | t |
supabase_functions_admin | t | t | f | f | f | f | -1 | f |
supabase_read_only_user | f | t | f | t | f | f | -1 | t |
supabase_replication_admin | f | t | f | t | f | t | -1 | f |
Expand Down
Loading