| OLD | NEW |
| 1 # Deploy tool Component for the LogDog Coordinator default module. | 1 # Deploy tool Component for the LogDog Coordinator default module. |
| 2 appengine_module < | 2 appengine_module < |
| 3 module_name: "" | 3 module_name: "" |
| 4 go_module < | 4 go_module < |
| 5 entry_package: "github.com/luci/luci-go/logdog/appengine/cmd/coordinator/vmu
ser" | 5 entry_package: "github.com/luci/luci-go/logdog/appengine/cmd/coordinator/vmu
ser" |
| 6 > | 6 > |
| 7 | 7 |
| 8 managed_vm < | 8 managed_vm < |
| 9 scopes: "https://www.googleapis.com/auth/userinfo.email" | 9 scopes: "https://www.googleapis.com/auth/userinfo.email" |
| 10 scopes: "https://www.googleapis.com/auth/devstorage.full_control" | 10 scopes: "https://www.googleapis.com/auth/devstorage.full_control" |
| 11 scopes: "https://www.googleapis.com/auth/cloud-platform" | 11 scopes: "https://www.googleapis.com/auth/cloud-platform" |
| 12 scopes: "https://www.googleapis.com/auth/bigtable.data" | 12 scopes: "https://www.googleapis.com/auth/bigtable.data" |
| 13 > | 13 > |
| 14 | 14 |
| 15 # Debug endpoints for profiling access. |
| 15 handlers < | 16 handlers < |
| 16 handler < | 17 handler < |
| 18 url: "/debug/*" |
| 19 secure: SECURE_ALWAYS |
| 20 login: LOGIN_ADMIN |
| 21 > |
| 22 |
| 23 handler < |
| 17 url: "/.*" | 24 url: "/.*" |
| 18 secure: SECURE_ALWAYS | 25 secure: SECURE_ALWAYS |
| 19 > | 26 > |
| 20 > | 27 > |
| 21 | 28 |
| 22 resources < | 29 resources < |
| 23 # These "query endpoint" indexes support timestamp-based querying. These | 30 # These "query endpoint" indexes support timestamp-based querying. These |
| 24 # should be kept in sync with the indexes in: | 31 # should be kept in sync with the indexes in: |
| 25 # logdog/appengine/coordinator/coordinatorTest/context.go | 32 # logdog/appengine/coordinator/coordinatorTest/context.go |
| 26 index < | 33 index < |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 property < | 134 property < |
| 128 name: "_Tags" | 135 name: "_Tags" |
| 129 > | 136 > |
| 130 property < | 137 property < |
| 131 name: "Created" | 138 name: "Created" |
| 132 direction: DESCENDING | 139 direction: DESCENDING |
| 133 > | 140 > |
| 134 > | 141 > |
| 135 > | 142 > |
| 136 > | 143 > |
| OLD | NEW |