Skip to content

Commit b585524

Browse files
committed
Full select for client machines security rule added with explanations
1 parent 8248331 commit b585524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/cluster/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ We recommend NOT to have SMTP credentials on the machines and also connect to th
9898
CREATE USER client WITH PASSWORD 'YOUR_PASSWORD';
9999
REVOKE ALL PRIVILEGES ON ALL TABLES IN SCHEMA public FROM client;
100100

101-
GRANT SELECT(id, name, uri, filename, branch, commit_hash, categories, machine_id, job_id, start_measurement, end_measurement, measurement_config, machine_specs, machine_id, usage_scenario, created_at, invalid_run, phases, logs, failed) on TABLE runs TO client;
101+
GRANT SELECT ON TABLE runs TO client; -- only needs a full select if optimizations are run on the measurement machines. Otherwise can be locked down
102102

103103
GRANT INSERT ON TABLE runs TO client;
104104
GRANT UPDATE(start_measurement, end_measurement, phases, logs, machine_id, machine_specs, measurement_config, usage_scenario, gmt_hash, invalid_run, failed, usage_scenario_dependencies) ON TABLE runs TO client;

0 commit comments

Comments
 (0)