# aembit credentials

> A guide to managing credentials with Aembit CLI

## Available commands

Aembit CLI provides the following commands to manage credentials:

* [`aembit credentials get`](/dev-guide/cli/reference/credentials-get) - retrieve credentials for a specific Client Workload

## Options

### `--log-level`

**Default** - `warn`\
**Possible values** - `off`, `trace`, `debug`, `info`, `warn`, `error`\
**Agent Proxy env var**: [AEMBIT\_LOG\_LEVEL](/reference/edge-components/edge-component-env-vars/#aembit_log_level)\
**Description** - The log level to use for the Aembit CLI. This controls the verbosity of the output from the CLI.

### `-h | --help`

Print help for the `aembit` command or the given subcommands.

### `-V | --version`

Print the version of the Aembit CLI.

## Examples

```shell
# Print the version of the Aembit CLI
aembit credentials --version
Aembit Agent CLI 1.24.3328
```



```shell
# Print the help text for the Aembit CLI credentials command
aembit credentials --help
Usage: aembit credentials [OPTIONS] [COMMAND]


...
...
```



```shell
# Set the log level to debug
aembit credentials --log-level debug
```



```shell
# Set the log level to error
aembit credentials --log-level error
```