> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloudstic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# cloudstic store show

> Show one store and its configuration

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

## Usage

```bash theme={null}
cloudstic store show [options] <name>
```

In interactive mode, if no name is provided, you'll be prompted to select from available stores.

## Options

<ParamField path="-profiles-file" type="string" env="CLOUDSTIC_PROFILES_FILE">
  Path to the profiles YAML file.
</ParamField>

## 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 Mode            | Description                                                |
| -------------------- | ---------------------------------------------------------- |
| `static-keys`        | S3 access/secret keys provided directly or via secret refs |
| `aws-shared-profile` | AWS shared config profile                                  |
| `sftp`               | SFTP password or key authentication                        |
| `default-chain`      | AWS SDK default credential chain                           |

The `used_by` field lists all profiles that reference this store.

## See Also

* [cloudstic store list](/commands/store-list): List all stores
* [cloudstic store new](/commands/store-new): Create or update a store
* [cloudstic store verify](/commands/store-verify): Validate store credentials and access
* [cloudstic store init](/commands/store-init): Initialize a configured store
* [Using Profiles](/guides/profiles): Complete profiles guide
