2020-06-23 16:58:43 +00:00
|
|
|
{{#if (env "CONSUL_NSPACES_ENABLED")}}
|
|
|
|
namespace "default" {
|
2020-11-30 18:42:59 +00:00
|
|
|
node "{{@name}}" {
|
2020-06-23 16:58:43 +00:00
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
namespace_prefix "" {
|
|
|
|
service_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{{else}}
|
2020-11-30 18:42:59 +00:00
|
|
|
node "{{@name}}" {
|
2020-06-23 08:59:43 +00:00
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
service_prefix "" {
|
|
|
|
policy = "read"
|
2020-06-23 16:58:43 +00:00
|
|
|
}
|
|
|
|
{{/if}}
|