bank
This commit is contained in:
21
02_tools.sql
21
02_tools.sql
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user