atmos store list
List the store backends configured under stores: in atmos.yaml. For each backend, this command shows its kind. It also shows whether the backend is a secret backend. It also shows which optional capabilities the backend supports, such as deletion, key enumeration, or a local existence check. Pass a STORE name to list the key/value pairs stored inside that backend instead, scoped with --stack and --component the same way store set writes a key. Only backends that support key enumeration can list their contents this way — check the Listable column first.
Usage
atmos store list [STORE] [flags]
Examples
# List all configured store backends
atmos store list
# Pipeline-friendly output
atmos store list --format=json
# List the key/value pairs in a store, scoped to a stack and component
atmos store list app-metadata --stack=prod --component=ecs-service
# List store-global key/value pairs (no --stack/--component)
atmos store list app-metadata
Arguments
STOREOptional. The name of a configured store backend. When set, this command lists the key/value pairs stored inside that backend instead of the configured backends themselves.
Flags
--stack(alias-s)Only used with
STORE. The Atmos stack used to scope the listing. This flag is optional. It must match the value used withset.Environment variable:
ATMOS_STACK--component(alias-c)Only used with
STORE. The Atmos component used to scope the listing. This flag is optional. It must match the value used withset.Environment variable:
ATMOS_COMPONENT--identity(alias-i)Only used with
STORE. The identity Atmos uses to access the store backend.Environment variable:
ATMOS_IDENTITY--format(alias-f)The output format. Choices are
table,json,yaml,csv, ortsv. On a terminal, the default is a styled table. When piped, the default is plain, delimited output.