> ## 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 profile show

> Show one profile and resolved store/auth references

Display the full configuration for a named profile, including the resolved store and auth entry details.

## Usage

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

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

## Options

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

## Output

```
profile: documents
  source: local:~/Documents
  store: prod-s3
    uri: s3:my-bucket/backups
    s3_region: eu-west-1
    s3_profile: prod
  tags: [production]
  excludes: [*.log, node_modules/]
```

For cloud source profiles with auth:

```
profile: gdrive
  source: gdrive-changes
  store: prod-s3
    uri: s3:my-bucket/backups
  auth: google-main
    provider: google
    token_file: ~/.config/cloudstic/tokens/google-main_token.json
```

## See Also

* [cloudstic profile list](/commands/profile-list): List all profiles
* [cloudstic profile new](/commands/profile-new): Create or update a profile
* [Using Profiles](/guides/profiles): Complete profiles guide
