# atmos config get

Read a value from your `atmos.yaml` configuration using a dot-notation path.

## Usage

```shell
atmos config get <path>
```

## Examples

```shell
atmos config get logs.level
atmos config get components.terraform.base_path
atmos config get logs.level --config ./atmos.yaml
```

## Arguments

- **`<path>` (required)**
  Dot-notation path to the value (e.g. 
  `logs.level`
  , 
  `components.terraform.base_path`
  ). Array elements use bracket indices (e.g. 
  `import[0]`
  ).

## Flags

- **`--config` (string, inherited)**
  Target a specific 
  `atmos.yaml`
   file instead of the one discovered in the current directory or git root.
