You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/core-api.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -583,9 +583,9 @@ The global log level is controlled by the config option `log_level`:
583
583
- configure via CLI, for example:
584
584
585
585
```bash
586
-
hcli config set -o log_level -V silent
587
-
hcli config set -o log_level -V error
588
-
hcli config set -o log_level -V debug
586
+
hcli config set --log_level silent
587
+
hcli config set --log_level error
588
+
hcli config set --log_level debug
589
589
```
590
590
591
591
All logger output is written to **stderr** so that structured command output on stdout
@@ -611,7 +611,7 @@ The KMS supports two storage modes for private keys:
611
611
-**`local`** - Keys stored as plain text (suitable for development and testing)
612
612
-**`local_encrypted`** - Keys encrypted using AES-256-GCM (recommended for production)
613
613
614
-
The default storage mode is configured via `hcli config set -o default_key_manager -V local|local_encrypted`. Individual operations can override this using the `--key-manager` flag when available.
614
+
The default storage mode is configured via `hcli config set --default_key_manager local` or `hcli config set --default_key_manager local_encrypted`. Individual operations can override this using the `--key-manager` flag when available.
0 commit comments