2020-01-13 16:13:07 +00:00
|
|
|
// The Nomad Client will be registering things into its buddy Consul Client.
|
2021-04-20 20:23:30 +00:00
|
|
|
// Note: because we also test the use of Consul namespaces, this token must be
|
|
|
|
// able to register services, read the keystore, and read node data for any
|
|
|
|
// namespace.
|
2020-01-28 22:33:59 +00:00
|
|
|
|
2020-03-30 17:37:03 +00:00
|
|
|
agent_prefix "" {
|
|
|
|
policy = "read"
|
2020-01-28 22:33:59 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 20:23:30 +00:00
|
|
|
namespace_prefix "" {
|
|
|
|
key_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
node_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
service_prefix "" {
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
}
|