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

# astro workspace create

<Info>The behavior and format of this command differs depending on what Astronomer product you're using. Use the following tabs to change product contexts.</Info>

Create a Workspace.

<Tabs>
  <Tab title="Astro">
    ## Usage

    ```sh wrap theme={null}
    astro workspace create <options>
    ```

    ## Options

    | Option            | Description                                                               | Valid Values  |
    | ----------------- | ------------------------------------------------------------------------- | ------------- |
    | `--description`   | The description for the Workspace.                                        | Any string    |
    | `--enforce-ci-cd` | Determines whether users are required to use an API token to deploy code. | `ON` or `OFF` |
    | `--name`          | The name for the Workspace.                                               | Any string    |

    ## Examples

    ```sh wrap theme={null}
    $ astro workspace create --name "My Deployment" --enforce-ci-cd ON
    ```

    ## Related commands

    * [`astro workspace update`](/docs/cli/v1.41/astro-workspace-update)
    * [`astro workspace delete`](/docs/cli/v1.41/astro-workspace-delete)
    * [`astro workspace user update`](/docs/cli/v1.41/astro-workspace-user-update)
  </Tab>

  <Tab title="APC">
    ## Usage

    ```sh wrap theme={null}
    astro workspace create <options>
    ```

    ## Options

    | Option          | Description                        | Valid Values |
    | --------------- | ---------------------------------- | ------------ |
    | `--description` | The description for the Workspace. | Any string   |
    | `--label`       | The label for the Workspace.       | Any string   |

    ## Examples

    ```sh wrap theme={null}
    $ astro workspace create --label "My Deployment" --description "My new Deployment"
    ```

    ## Related commands

    * [`astro workspace update`](/docs/cli/v1.41/astro-workspace-update)
    * [`astro workspace delete`](/docs/cli/v1.41/astro-workspace-delete)
    * [`astro workspace user update`](/docs/cli/v1.41/astro-workspace-user-update)
  </Tab>
</Tabs>
