Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3033)

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: identities in configs Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/config_service/gitiles_import.py ('k') | appengine/config_service/proto/project_config_pb2.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..48391160eabbae7ec8640c68577150ade0b4fbfd 100644
--- a/appengine/config_service/proto/project_config.proto
+++ b/appengine/config_service/proto/project_config.proto
@@ -12,6 +12,15 @@ package config_service;
message ProjectCfg {
// Full name of the project.
optional string name = 1;
+ // A list of identities that have read-only access to the. An element is one
+ // of:
+ // * "group:<group>", where group is defined on auth server.
+ // * "<email>"
+ // * "<identity>"
+ //
+ // If not specified, only admins and trusted services have access.
+ // Talk to admins to determine the group name appropriate for your project.
+ repeated string access = 2;
}
// Schema of refs.cfg.
« no previous file with comments | « appengine/config_service/gitiles_import.py ('k') | appengine/config_service/proto/project_config_pb2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698