From 969b87452f7ba617d07c54fff7c6547bedd5dd5e Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Thu, 24 Apr 2025 16:15:55 +0200 Subject: [PATCH] WIP --- docker-compose.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6c65345..f6b4a9e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,7 +23,11 @@ services: KAFKA_AUTHORIZER_CLASS_NAME: kafka.security.authorizer.AclAuthorizer KAFKA_ALLOW_EVERYONE_IF_NO_ACL_FOUND: "true" KAFKA_LISTENER_NAME_BROKER_ENABLED_MECHANISMS: PLAIN - KAFKA_LISTENER_NAME_BROKER_PLAIN_SASL_JAAS_CONFIG: KafkaServer { org.apache.kafka.common.security.plain.PlainLoginModule required user_broker="geheim" username="broker" password="geheim"; }; + KAFKA_LISTENER_NAME_BROKER_PLAIN_SASL_JAAS_CONFIG: | + org.apache.kafka.common.security.plain.PlainLoginModule required \ + user_broker="geheim" \ + username="broker" \ + password="geheim"; KAFKA_SASL_MECHANISM_INTER_BROKER_PROTOCOL: PLAIN KAFKA_SASL_ENABLED_MECHANISMS: PLAIN, SCRAM-SHA-256, SCRAM-SHA-512 KAFKA_LOG_RETENTION_CHECK_INTERVAL_MS: 1000 -- 2.20.1