Chromium Code Reviews

Unified Diff: appengine/config_service/proto/project_config.proto

Issue 1224913002: luci-config: fine-grained acls (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: mentioned in doc that trusted services also have access Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: appengine/config_service/proto/project_config.proto
diff --git a/appengine/config_service/proto/project_config.proto b/appengine/config_service/proto/project_config.proto
index 0d4f2ebfd5869b4d311542f2eae1dea10b5f164e..2fc6fb70042505f8dd4f8b58a4650e7351f70be5 100644
--- a/appengine/config_service/proto/project_config.proto
+++ b/appengine/config_service/proto/project_config.proto
@@ -12,6 +12,10 @@ package config_service;
message ProjectCfg {
// Full name of the project.
optional string name = 1;
+ // Name of a group defined at auth service that has read-only access to the
+ // project. If not specified, only admins and trusted services have access.
+ // Talk to admins to determine the group name appropriate for your project.
+ optional string access = 2;
}
// Schema of refs.cfg.

Powered by Google App Engine