From 5989589c3e8d1319eb0dbf2b4cb84a7388c35c45 Mon Sep 17 00:00:00 2001 From: Alex Bykov Date: Sat, 8 Nov 2025 05:56:14 +0300 Subject: [PATCH] Update configuration.md (#812) Escaping Pipe Character in the table "CLI Flags..." Co-authored-by: loverustfs <155562731+loverustfs@users.noreply.github.com> --- docs/kms/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kms/configuration.md b/docs/kms/configuration.md index ccb36372..0dccf64f 100644 --- a/docs/kms/configuration.md +++ b/docs/kms/configuration.md @@ -16,7 +16,7 @@ This guide describes the configuration surfaces for the RustFS Key Management Se | CLI flag | Env variable | Description | |-----------------------------|--------------------------------|-------------| | `--kms-enable` | `RUSTFS_KMS_ENABLE` | Enables KMS at startup. Defaults to `false`. | -| `--kms-backend ` | `RUSTFS_KMS_BACKEND` | Selects the backend implementation. Defaults to `local`. | +| `--kms-backend ` | `RUSTFS_KMS_BACKEND` | Selects the backend implementation. Defaults to `local`. | | `--kms-key-dir ` | `RUSTFS_KMS_KEY_DIR` | Required when `kms-backend=local`; directory that stores wrapped master keys. | | `--kms-vault-address ` | `RUSTFS_KMS_VAULT_ADDRESS` | Vault base URL (e.g. `https://vault.example.com:8200`). | | `--kms-vault-token ` | `RUSTFS_KMS_VAULT_TOKEN` | Token used for Vault authentication. Prefer AppRole or short-lived tokens. |