Skip to main content
Display the full configuration for a named store, including credentials mode, encryption settings, and which profiles reference it.

Usage

cloudstic store show [options] <name>
In interactive mode, if no name is provided, you’ll be prompted to select from available stores.

Options

-profiles-file
string
Path to the profiles YAML file.

Output

store: prod-s3
  uri: s3:my-bucket/backups
  auth_mode: aws-shared-profile
  s3_region: eu-west-1
  s3_profile: prod
  password_secret: env://BACKUP_PASSWORD
  kms_key_arn: arn:aws:kms:us-east-1:123456:key/abcd
  kms_region: us-east-1
  used_by: [documents gdrive]
The auth_mode field summarizes how the store authenticates:
Auth ModeDescription
static-keysS3 access/secret keys provided directly or via secret refs
aws-shared-profileAWS shared config profile
sftpSFTP password or key authentication
default-chainAWS SDK default credential chain
The used_by field lists all profiles that reference this store.

See Also