ti fs-vault list-secrets
Lists secrets visible to the active owner or delegated credential.
The command returns the complete visible list. It does not paginate the result.
Syntax
ti fs-vault list-secrets
[--file-system-id <string>]
[--fs-token <string>]
[--help]
[--vault-token <string>]
[--version]
Options
--file-system-id <string>: Select the file system. You can also setTI_FS_FILE_SYSTEM_ID.--fs-token <string>: Set the owner Filesystem token. If omitted, the command uses theTI_FS_TOKENenvironment variable. If neither is provided, the command uses the local token stored for the selected Filesystem. For delegated authentication, use--vault-tokenorTI_VAULT_TOKENinstead.--help: Display help information.--vault-token <string>: Delegatedti fs-vaulttoken; preferTI_VAULT_TOKEN.--version: Display version information.
For options shared by all commands, see Global options.
Examples
List owner-visible secrets:
# Return secret metadata without exposing field values. ti fs-vault list-secrets --file-system-id <file-system-id>List secrets visible to a delegated token:
# Read the delegated token without echoing it or storing it in shell history. printf 'Delegated Vault token: ' >&2 read -r -s TI_VAULT_TOKEN printf '\n' >&2 export TI_VAULT_TOKEN # Restrict results to the token's granted scope. ti fs-vault list-secrets --file-system-id <file-system-id> unset TI_VAULT_TOKEN