From ecff2f903200190188b287f5a54a4afcaf59ffd4 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Tue, 4 Aug 2026 23:45:01 +0100 Subject: [PATCH] change default encryptionPolicy to "REQUIRED_REMOTE" --- kudu/src/main/resources/reference.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kudu/src/main/resources/reference.conf b/kudu/src/main/resources/reference.conf index 988b3cfa6..7727bbfb5 100644 --- a/kudu/src/main/resources/reference.conf +++ b/kudu/src/main/resources/reference.conf @@ -6,6 +6,8 @@ pekko.connectors.kudu { master-address = "" # options: OPTIONAL,REQUIRED_REMOTE,REQUIRED # reference to org.apache.kudu.client.AsyncKuduClient.EncryptionPolicy - encryptionPolicy = "OPTIONAL" + # REQUIRED_REMOTE enforces encryption for remote connections while allowing + # unencrypted connections to localhost (useful for local development/testing) + encryptionPolicy = "REQUIRED_REMOTE" }