From 0a31cf18cd12003ec2ab2bd41d4e225cd1739e17 Mon Sep 17 00:00:00 2001
From: Eric Eastwood <erice@element.io>
Date: Mon, 20 Jan 2025 12:40:05 -0600
Subject: [PATCH] Document possibility of configuring `tls` for a worker
 instance in `instance_map` (#18064)

---
 changelog.d/18064.doc                            | 1 +
 docs/usage/configuration/config_documentation.md | 4 ++++
 2 files changed, 5 insertions(+)
 create mode 100644 changelog.d/18064.doc

diff --git a/changelog.d/18064.doc b/changelog.d/18064.doc
new file mode 100644
index 0000000000..09f73c9b9b
--- /dev/null
+++ b/changelog.d/18064.doc
@@ -0,0 +1 @@
+Document `tls` option for a worker instance in `instance_map`.
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md
index 74522a1e4e..64392366ca 100644
--- a/docs/usage/configuration/config_documentation.md
+++ b/docs/usage/configuration/config_documentation.md
@@ -4465,6 +4465,10 @@ instance_map:
   worker1:
     host: localhost
     port: 8034
+  other:
+    host: localhost
+    port: 8035
+    tls: true
 ```
 Example configuration(#2, for UNIX sockets):
 ```yaml
-- 
GitLab