summaryrefslogtreecommitdiffstats
path: root/sampleClient/src/main/resources/docker-compose/kafka.jaas.conf
diff options
context:
space:
mode:
Diffstat (limited to 'sampleClient/src/main/resources/docker-compose/kafka.jaas.conf')
-rw-r--r--sampleClient/src/main/resources/docker-compose/kafka.jaas.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/sampleClient/src/main/resources/docker-compose/kafka.jaas.conf b/sampleClient/src/main/resources/docker-compose/kafka.jaas.conf
new file mode 100644
index 0000000..1124681
--- /dev/null
+++ b/sampleClient/src/main/resources/docker-compose/kafka.jaas.conf
@@ -0,0 +1,13 @@
+KafkaServer {
+ org.apache.kafka.common.security.scram.ScramLoginModule required
+ username="broker"
+ password="broker"
+ user_broker="broker"
+ user_client="client-secret";
+};
+
+Client {
+ org.apache.zookeeper.server.auth.DigestLoginModule required
+ username="kafka"
+ password="kafka";
+};