> 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/configure.md).

# configure

Configure a deployed application.

## Syntax

```bash
rumi cloud aws configure --profile <profile> --name <name> --section <section> --key <key> --value <value> [options]
```

## Options

| Option      | Short | Description               | Default   |
| ----------- | ----- | ------------------------- | --------- |
| `--profile` | `-p`  | AWS profile to use        | Required  |
| `--name`    | `-n`  | Name of the private cloud | Required  |
| `--section` | `-s`  | Configuration section     | Required  |
| `--key`     | `-k`  | Property key              | Required  |
| `--value`   | `-v`  | Property value            | Required  |
| `--region`  | `-r`  | AWS region                | us-east-1 |

## Example

```bash
rumi cloud aws configure \
  --profile my-aws-profile \
  --name my-cloud \
  --section logging \
  --key level \
  --value DEBUG
```

## See Also

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