open-consul/acl
R.B. Boyer c2d167d06e
agent: protect the ui metrics proxy endpoint behind ACLs (#9099)
This ensures the metrics proxy endpoint is ACL protected behind a
wildcard `service:read` and `node:read` set of rules. For Consul
Enterprise these will need to span all namespaces:

```
service_prefix "" { policy = "read" }
node_prefix ""    { policy = "read" }

namespace_prefix "" {
  service_prefix "" { policy = "read" }
  node_prefix ""    { policy = "read" }
}
```

This PR contains just the backend changes. The frontend changes to
actually pass the consul token header to the proxy through the JS plugin
will come in another PR.
2020-11-04 12:50:03 -06:00
..
acl.go Small typo in docstring (#8280) 2020-07-09 17:38:50 -06:00
acl_oss.go Intentions ACL enforcement updates (#7028) 2020-01-13 15:51:40 -05:00
acl_test.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
authorizer.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
authorizer_oss.go Miscellaneous acl package cleanup 2019-12-18 13:44:32 -05:00
authorizer_test.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
chained_authorizer.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
chained_authorizer_test.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
errors.go Add helper for generating better permission denied errors 2020-06-16 15:06:18 -04:00
policy.go Miscellaneous acl package cleanup 2019-12-18 13:44:32 -05:00
policy_authorizer.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
policy_authorizer_oss.go Miscellaneous acl package cleanup 2019-12-18 13:44:32 -05:00
policy_authorizer_test.go Enable gofmt simplify 2020-06-16 13:21:11 -04:00
policy_merger.go
policy_merger_oss.go
policy_oss.go Miscellaneous acl package cleanup 2019-12-18 13:44:32 -05:00
policy_test.go Enable gofmt simplify 2020-06-16 13:21:11 -04:00
static_authorizer.go agent: protect the ui metrics proxy endpoint behind ACLs (#9099) 2020-11-04 12:50:03 -06:00
static_authorizer_test.go