atmos vendor config list
List every editable dot-notation path across the root vendor manifest and any manifests
it imports, along with the file that defines each one, its type, and its value. There is
no flat alias for list — use this command directly.
Usage
atmos vendor config list [path-pattern] [--format <format>] [--delimiter <delimiter>] [--file <manifest>]
Examples
# List every editable path.
atmos vendor config list
# Filter by a glob pattern.
atmos vendor config list 'spec.sources[*].version'
# Machine-readable output.
atmos vendor config list --format json
Arguments
[path-pattern](optional)- A glob pattern to filter the listed paths (e.g.
spec.sources[*].version).
Flags
--file(string, default./vendor.yaml)- The vendor manifest file to list paths from (along with any manifests it imports).
--format/-f(string, defaultpaths)- Output format:
paths,table,json,yaml,csv, ortsv. --delimiter(string)- Delimiter to use for
csv/tsvoutput.