open-nomad/e2e/consulacls/nomad-server-policy.hcl
Seth Hoenig fc6b02c817 e2e: minimize Consul ACL policies used in e2e tests
Issue #7523 documents the Consul ACLs used in each Consul interface
used by Nomad. Minimize the policies used in e2e tests so that we
are setting a good example.
2020-03-30 12:53:40 -06:00

17 lines
260 B
HCL

// The Nomad Server requires total access to Consul ACLs, because the Server
// will be requesting new SI tokens from Consul.
acl = "write"
service_prefix "" {
policy = "write"
}
agent_prefix "" {
policy = "read"
}
node_prefix "" {
policy = "read"
}