--- layout: docs page_title: Namespaces - Vault Enterprise description: >- Vault Enterprise has support for Namespaces, a feature to enable Secure Multi-tenancy (SMT) and self-management. --- # Vault Enterprise namespaces Many organizations implement Vault as a service to provide centralized management of sensitive data and ensure that the different teams in an organization operate within isolated environments known as **tenants**. Multi-tenant environments have the following implementation challenges: - **Tenant isolation**. Teams within a Visualization as a Service (VaaS) environment require strong isolation for their policies, secrets, and identities. Tenant isolation may also be required due to organizational security and privacy requirements or to address compliance regulations like [GDPR](https://gdpr.eu). - **Long-term management**. Tenants typically have different policies and teams request changes to their tenants at different rates. As a result, managing a multi-tenant environment can become difficult for a single team as the number of tenants within the organization grows. Namespaces support secure multi-tenancy (**SMT**) within a single Vault Enterprise instance with tenant isolation and administration delegation so Vault administrators can empower delegates to manage their own tenant environment. When you create a namespace, you establish an isolated environment with separate login paths that functions as a mini-Vault instance within your Vault installation. Users can then create and manage their sensitive data within the confines of that namespace, including: - secret engines - authentication methods - ACL, EGP, and RGP policies - password policies - entities - identity groups - tokens Namespaces are isolated environments, but Vault administrators can still share and enforce global policies across namespaces with the [group-policy-application](/vault/api-docs/system/config-group-policy-application) endpoint of the Vault API. ## Namespace naming restrictions Valid Vault namespace names: - **CANNOT** end with `/` - **CANNOT** contain spaces - **CANNOT** be one of the following reserved strings: - `root` - `sys` - `audit` - `auth` - `cubbyhole` - `identity` Refer to the [Namespace limits section](/vault/docs/internals/limits#namespace-limits) of [Vault limits and maximums](/vault/docs/internals/limits) for storage limits related to managing namespaces. Read the [Vault namespace and mount structuring](/vault/tutorials/enterprise/namespace-structure) tutorial for best practices and recommendations for structuring your namespaces. ## Child namespaces A **child namespace** is any namespace that exists entirely within the scope of another namespace. The containing namespace is the **parent namespace**. For example, given the namespace path `A/B/C`: - `A` is the top-most namespace and exists under the root namespace for the Vault instance. - `B` is a child namespace of `A` and the parent namespace of `C`. - `C` is a child namespace of `B` and the grandchild namespace of `A`. Children can inherit elements from their parent namespaces. For example, policies for a child namespace might reference entities or groups from the parent namespace. Parent namespaces can also **assert** policies on identities within a child namespace. Vault administrators can configure the desired inheritance behavior with the [group-policy-application](/vault/api-docs/system/config-group-policy-application) endpoint of the Vault API. ## Delegation and administrative namespaces Vault system administrators can assign administration rights to delegate admins to allow teams to self-manage their namespace. In addition to basic management, delegate admins can create child namespaces and assign admin rights to subordinate delegate admins. Additionally, [administrative namespaces](/vault/docs/enterprise/namespaces/create-admin-namespace) let Vault administrators grant access to a [predefined subset of privileged endpoints](#privileged-endpoints) by setting the relevant namespace parameters in their Vault configuration file. ## Vault API and namespaces Users can perform API operations under a specific namespace by setting the `X-Vault-Namespace` header to the absolute or relative namespace path. Relative namespace paths are assumed to be child namespaces of the calling namespace. You can also provide an absolute namespace path without using the `X-Vault-Namespace` header. Vault constructs the fully qualified namespace path based on the calling namespace and the `X-Vault` header to route the request to the appropriate namespace. For example, the following requests all route to the `ns1/ns2/secret/foo` namespace: 1. Path: `ns1/ns2/secret/foo` 2. Path: `secret/foo`, Header: `X-Vault-Namespace: ns1/ns2/` 3. Path: `ns2/secret/foo`, Header: `X-Vault-Namespace: ns1/` Use the [/sys/namespaces](/vault/api-docs/system/namespaces) API or [`namespace`](/vault/docs/commands/namespace) CLI command to manage your namespaces. ## Restricted API paths The Vault API includes system backend endpoints, which are mounted under the `sys/` path. System endpoints let you interact with the internal features of your Vault instance. By default, Vault allows non-root calls to the less-sensitive system backend endpoints. But, for security reasons, Vault restricts access to some of the system backend endpoints to calls from the root namespace or calls that use a token in the root namespace with elevated permissions. Rather than granting access to the full set of privileged `sys/` paths, Vault administrators can also grant access to a predefined subset of the restricted endpoints with an administrative namespace. @include 'api/restricted-endpoints.mdx' ## Learn more Refer to the following tutorials to learn more about Vault namespaces: - [Secure Multi-Tenancy with Namespaces](/vault/tutorials/enterprise/namespaces) - [Secrets Management Across Namespaces without Hierarchical Relationship](/vault/tutorials/enterprise/namespaces-secrets-sharing) - [Vault Namespace and Mount Structuring Guide](/vault/tutorials/enterprise/namespace-structure) - [HCP Vault namespace considerations](/vault/tutorials/cloud-ops/hcp-vault-namespace-considerations)