From c24f2ddcef16cda3815ec509753396a3bb3e2cc1 Mon Sep 17 00:00:00 2001 From: egershon Date: Mon, 13 Jul 2026 12:09:36 +0300 Subject: [PATCH] docs: document tls.crl_file TLS option Add tls.crl_file to the transport security property table. Relates to fluent/fluent-bit#12060 Signed-off-by: egershon --- administration/transport-security.md | 1 + 1 file changed, 1 insertion(+) diff --git a/administration/transport-security.md b/administration/transport-security.md index 12c1cfc5f..fb31dc111 100644 --- a/administration/transport-security.md +++ b/administration/transport-security.md @@ -22,6 +22,7 @@ Both input and output plugins that perform Network I/O can optionally enable TLS | `tls.crt_file` | Absolute path to Certificate file. | _none_ | | `tls.key_file` | Absolute path to private Key file. | _none_ | | `tls.key_passwd` | Optional password for `tls.key_file` file. | _none_ | +| `tls.crl_file` | Absolute path to a Certificate Revocation List (CRL) file in PEM format. When set, revoked certificates are rejected during TLS verification. | _none_ | | `tls.max_version` | Specify the maximum version of TLS. | _none_ | | `tls.min_version` | Specify the minimum version of TLS. | _none_ | | `tls.verify` | Force certificate validation. | `on` |