# atmos vendor get

Read the version pinned for a component in your `vendor.yaml` manifest. The component
is matched by name, so manifest ordering does not matter.

:::info
`atmos vendor get` is an alias for [`atmos vendor config get`](/cli/commands/vendor/config/get): it resolves `<component>` to its `spec.sources[N].version` path and delegates to the canonical form.
:::

## Usage

```shell
atmos vendor get <component> [--file <manifest>]
```

## Examples

```shell
atmos vendor get vpc
atmos vendor get vpc --file ./vendor.yaml
```

## Arguments

- **`<component>` (required)**
  The component name as it appears in 
  `spec.sources[].component`
  .

## Flags

- **`--file` (string, default `./vendor.yaml`)**
  The vendor manifest file to read.
