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.
This commit is contained in:
Seth Hoenig 2020-03-30 11:37:03 -06:00
parent 0a812ab689
commit fc6b02c817
2 changed files with 8 additions and 8 deletions

View File

@ -4,10 +4,10 @@ service_prefix "" {
policy = "write" policy = "write"
} }
node_prefix "" {
policy = "write"
}
agent_prefix "" { agent_prefix "" {
policy = "read" policy = "read"
} }
node_prefix "" {
policy = "read"
}

View File

@ -7,10 +7,10 @@ service_prefix "" {
policy = "write" policy = "write"
} }
node_prefix "" {
policy = "write"
}
agent_prefix "" { agent_prefix "" {
policy = "read" policy = "read"
} }
node_prefix "" {
policy = "read"
}