Skip to content

Instantly share code, notes, and snippets.

@suneg
Created March 8, 2019 11:33
Show Gist options
  • Save suneg/1dd5a352d9855fef17851ce809d39959 to your computer and use it in GitHub Desktop.
Save suneg/1dd5a352d9855fef17851ce809d39959 to your computer and use it in GitHub Desktop.
Create readonly user on postgres
-- List roles
SELECT rolname FROM pg_roles;
-- Create a group
CREATE ROLE readaccess;
-- Grant access to existing tables
GRANT USAGE ON SCHEMA public TO readaccess;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readaccess;
-- Grant access to future tables
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readaccess;
-- Create a final user with password
CREATE USER sune WITH PASSWORD 'verysecret';
GRANT readaccess TO sune;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment