> ## 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 deployment connection list

<Info>
  This command is only available on Astro.
</Info>

List the Airflow connections stored in a Deployment's metadata database.

## Usage

```sh wrap theme={null}
astro deployment connection list
```

This command only lists Airflow connections that were configured through the Airflow UI or otherwise stored in the Airflow metadata database.

## Options

| Option                 | Description                                                                                                                  | Possible Values           |
| ---------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ------------------------- |
| `-d`,`--deployment-id` | The ID of the Deployment for which to list connections                                                                       | Any valid Deployment ID   |
| `--deployment-name`    | The name of the Deployment for which to list connections. Use as an alternative to `<deployment-id>`.                        | Any valid Deployment name |
| `-w`,`--workspace-id`  | List connections for a Deployment that is not in your current Workspace. If not specified, your current Workspace is assumed | Any valid Workspace ID    |

## Output

| Output          | Description                            | Data Type |
| --------------- | -------------------------------------- | --------- |
| `CONNECTION ID` | The ID you assigned to the connection. | String    |
| `CONN TYPE`     | The Airflow connection type.           | String    |

## Examples

```bash wrap theme={null}
# List connections stored in the Deployment with an ID of cl03oiq7d80402nwn7fsl3dmv
astro deployment connection list --deployment-id cl03oiq7d80402nwn7fsl3dmv

# List connections stored in the Deployment "My Deployment"
astro deployment connection list --deployment-name="My Deployment"
```

## Related commands

* [`astro deployment connection create`](/docs/cli/v1.41/astro-deployment-connection-create)
* [`astro deployment connection update`](/docs/cli/v1.41/astro-deployment-connection-update)
