> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nebius.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Renaming tenants in Nebius AI Cloud

A [tenant](./overview#tenants) in Nebius AI Cloud has a name and ID. You can change the tenant name; the tenant ID remains the same.

## Prerequisites

The preparations for this guide depend on your preferred interface.

<Tabs group="interfaces">
  <Tab title="Web console">
    Make sure you are in a [group](/iam/authorization/groups/index) that has the `admin` role within your tenant; for example, the default `admins` group. You can check this in the [Administration → IAM](https://console.nebius.com/iam) section of the web console.
  </Tab>

  <Tab title="CLI">
    1. Make sure you are in a [group](/iam/authorization/groups/index) that has the `admin` role within your tenant; for example, the default `admins` group. You can check this in the [Administration → IAM](https://console.nebius.com/iam) section of the web console.
    2. [Install](../cli/install) and [configure](../cli/configure) the Nebius AI Cloud CLI.
  </Tab>
</Tabs>

## How to rename a tenant

<Tabs group="interfaces">
  <Tab title="Web console">
    1. Go to the [web console](https://console.nebius.com) and expand the top-left list of tenants.
    2. In the line of the required tenant, click <Icon icon="https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/button-vellipsis.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=e80b8e57c43bfd117679262e6a1334ad" width="12" height="24" data-path="_assets/button-vellipsis.svg" /> → **Rename tenant**.
    3. In the window that opens, specify the new name.
    4. Click **Rename tenant**.

    A random suffix is appended to the name you specify, to ensure that the new name is unique. For example, if you entered `my-main-tenant`, the new name can be `my-main-tenant-jf3`.
  </Tab>

  <Tab title="CLI">
    Run the following command:

    ```bash theme={null}
    nebius iam v2 tenant update --id <tenant_ID> \
      --name-prefix <new_tenant_name>
    ```

    In this command, specify the following:

    * `--id`: [Tenant ID](/iam/get-tenants#cli).
    * `--name-prefix`: Desired name. A random suffix is appended to the name you specify, to ensure that the new name is unique. For example, if you entered `my-main-tenant`, the new name can be `my-main-tenant-jf3`.
  </Tab>
</Tabs>
