mirror of https://github.com/hashicorp/consul
19 lines
269 B
Handlebars
19 lines
269 B
Handlebars
|
{{#if (env "CONSUL_NSPACES_ENABLED")}}
|
||
|
namespace "default" {
|
||
|
node "{{name}}" {
|
||
|
policy = "write"
|
||
|
}
|
||
|
}
|
||
|
namespace_prefix "" {
|
||
|
service_prefix "" {
|
||
|
policy = "read"
|
||
|
}
|
||
|
}
|
||
|
{{else}}
|
||
|
node "{{name}}" {
|
||
|
policy = "write"
|
||
|
}
|
||
|
service_prefix "" {
|
||
|
policy = "read"
|
||
|
}
|
||
|
{{/if}}
|