> For the complete documentation index, see [llms.txt](https://docs.rumi.systems/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rumi.systems/rumi-cli/commands/cloud/aws/deploy.md).

# deploy

Deploy an application to an existing private cloud.

## Syntax

```bash
rumi cloud aws deploy --profile <profile> --name <name> --xar <xar-file> [options]
```

## Options

| Option      | Short | Description                    | Default   |
| ----------- | ----- | ------------------------------ | --------- |
| `--profile` | `-p`  | AWS profile to use             | Required  |
| `--name`    | `-n`  | Name of the private cloud      | Required  |
| `--xar`     | `-x`  | Path to the XAR file to deploy | Required  |
| `--region`  | `-r`  | AWS region                     | us-east-1 |

## Example

```bash
rumi cloud aws deploy \
  --profile my-aws-profile \
  --name my-cloud \
  --xar my-app.xar
```

## See Also

* [provision](/rumi-cli/commands/cloud/aws/provision.md)
* [configure](/rumi-cli/commands/cloud/aws/configure.md)
* [start](/rumi-cli/commands/cloud/aws/start.md)
