Skip to content

Commit

Permalink
Add dekaf role
Browse files Browse the repository at this point in the history
  • Loading branch information
jshearer committed Nov 25, 2024
1 parent 0e75c88 commit 31b4243
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions supabase/migrations/20241125194715_dekaf_role.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
BEGIN;

CREATE ROLE dekaf NOLOGIN BYPASSRLS;
GRANT dekaf TO authenticator;
GRANT USAGE ON SCHEMA public TO dekaf;
GRANT USAGE, SELECT ON ALL SEQUENCES IN SCHEMA public TO dekaf;
GRANT SELECT,INSERT,UPDATE,DELETE ON public.registered_avro_schemas TO dekaf;
GRANT SELECT ON public.live_specs TO dekaf;
GRANT SELECT ON public.live_specs_ext TO dekaf;

END;

0 comments on commit 31b4243

Please sign in to comment.