2019-12-06 16:14:56 +00:00
---
2020-04-07 18:55:19 +00:00
layout: docs
page_title: Consul Enterprise Namespaces
2020-04-13 18:40:26 +00:00
sidebar_title: Namespaces
2020-04-07 18:55:19 +00:00
description: Consul Enterprise enables data isolation with Namespaces.
2019-12-06 16:14:56 +00:00
---
# Consul Enterprise Namespaces
2020-04-23 22:13:18 +00:00
<EnterpriseAlert>
2020-07-08 23:09:00 +00:00
This feature requires{' '}
<a href="https://www.hashicorp.com/products/consul/">Consul Enterprise</a>{' '}
with the Governance and Policy module.
2020-04-23 22:13:18 +00:00
</EnterpriseAlert>
With Consul Enterprise v1.7.0, data for different users or teams
2020-04-06 20:27:35 +00:00
can be isolated from each other with the use of namespaces. Namespaces help reduce operational challenges
by removing restrictions around uniqueness of resource names across distinct teams, and enable operators
2019-12-06 16:14:56 +00:00
to provide self-service through delegation of administrative privileges.
2020-03-24 20:06:20 +00:00
For more information on how to use namespaces with Consul Enterprise please review the following HashiCorp Learn Guides:
2020-02-11 19:31:47 +00:00
2020-03-24 20:06:20 +00:00
- [Register and Discover Services within Namespaces](https://learn.hashicorp.com/consul/namespaces/discovery-namespaces) - Register multiple services within different namespaces in Consul.
- [Setup Secure Namespaces](https://learn.hashicorp.com/consul/namespaces/secure-namespaces) - Secure resources within a namespace and delegate namespace ACL rights via ACL tokens.
2020-02-11 19:31:47 +00:00
2019-12-06 16:14:56 +00:00
## Namespace Definition
2020-04-09 23:46:54 +00:00
Namespaces are managed exclusively through the [HTTP API](/api/namespaces) and the [Consul CLI](/docs/commands/namespace).
2019-12-06 16:14:56 +00:00
The HTTP API accepts only JSON formatted definitions while the CLI will parse either JSON or HCL.
2020-03-24 20:06:20 +00:00
An example namespace definition looks like the following:
2019-12-06 16:14:56 +00:00
JSON:
```json
{
2020-04-06 20:27:35 +00:00
"Name": "team-1",
"Description": "Namespace for Team 1",
"ACLs": {
"PolicyDefaults": [
{
"ID": "77117cf6-d976-79b0-d63b-5a36ac69c8f1"
},
{
"Name": "node-read"
}
],
"RoleDefaults": [
{
"ID": "69748856-ae69-d620-3ec4-07844b3c6be7"
},
{
"Name": "ns-team-2-read"
}
]
},
"Meta": {
"foo": "bar"
}
2019-12-06 16:14:56 +00:00
}
```
HCL:
```hcl
2020-02-06 12:33:07 +00:00
Name = "team-1"
Description = "Namespace for Team 1"
2019-12-06 16:14:56 +00:00
ACLs {
PolicyDefaults = [
{
ID = "77117cf6-d976-79b0-d63b-5a36ac69c8f1"
},
{
Name = "node-read"
}
]
RoleDefaults = [
{
"ID": "69748856-ae69-d620-3ec4-07844b3c6be7"
},
{
"Name": "ns-team-2-read"
}
]
}
Meta {
foo = "bar"
}
```
### Fields
2020-03-24 20:06:20 +00:00
- `Name` `(string: <required>)` - The namespaces name must be a valid DNS hostname label.
2019-12-06 16:14:56 +00:00
- `Description` `(string: "")` - This field is intended to be a human readable description of the
namespace's purpose. It is not used internally.
2020-04-06 20:27:35 +00:00
2020-03-24 20:06:20 +00:00
- `ACLs` `(object: <optional>)` - This fields is a nested JSON/HCL object to contain the namespaces
2020-04-06 20:27:35 +00:00
ACL configuration.
2019-12-06 16:14:56 +00:00
- `PolicyDefaults` `(array<ACLLink>)` - A list of default policies to be applied to all tokens
created in this namespace. The ACLLink object can contain an `ID` and/or `Name` field. When the
2020-03-24 20:06:20 +00:00
policies ID is omitted Consul will resolve the name to an ID before writing the namespace
definition internally. Note that all policies linked in a namespace definition must be defined
2019-12-06 16:14:56 +00:00
within the `default namespace.
2020-04-06 20:27:35 +00:00
2019-12-06 16:14:56 +00:00
- `RoleDefaults` `(array<ACLLink>)` - A list of default roles to be applied to all tokens
created in this namespace. The ACLLink object can contain an `ID` and/or `Name` field. When the
2020-03-24 20:06:20 +00:00
roles' ID is omitted Consul will resolve the name to an ID before writing the namespace
definition internally. Note that all roles linked in a namespace definition must be defined
2019-12-06 16:14:56 +00:00
within the `default namespace.
2020-04-06 20:27:35 +00:00
2019-12-06 16:14:56 +00:00
- `Meta` `(map<string|string>: <optional>)` - Specifies arbitrary KV metadata to associate with
this namespace.