# atmos stack config get

Read the effective value of a component-relative dot-path (e.g. `vars.region`) for a
component in a stack, and see which manifest file currently defines it. This is the
canonical form; [`atmos stack get`](/cli/commands/stack/stack-get) is a convenience
alias for this command.

## Usage

```shell
atmos stack config get <path> -s <stack> -c <component>
```

## Examples

```shell
atmos stack config get vars.region -s plat-ue2-prod -c vpc
```

## Arguments

- **`<path>` (required)**
  Component-relative dot-notation path (e.g. 
  `vars.region`
  ).

## Flags

- **`--stack` / `-s` (string, required)**
  The stack name.
- **`--component` / `-c` (string, required)**
  The component name.

## Related

- Alias: [`atmos stack get`](/cli/commands/stack/stack-get)
