This commit is contained in:
2025-11-30 20:44:57 +01:00
parent a494370ded
commit aef1c99d0c
3 changed files with 73 additions and 7 deletions

View File

@@ -23,3 +23,24 @@ grant select on all tables
to metabase_user;
/* User grafana */
create role grafana_user with
login
nosuperuser
nocreatedb
nocreaterole
noinherit
noreplication
connection limit -1
password 'supermotdepasse';
grant usage
on schema public
to grafana_user;
grant select on all tables
in schema public
to grafana_user;
create extension anon;
select anon.init();