kouncil
kouncil copied to clipboard
How do I configure sasl jaas authentication?
https://docs.confluent.io/platform/current/kafka/authentication_sasl/index.html#jaas-configurations
@gabrieljones Currently Kouncil doesn't support this feature, we are working on implementing this.
Any update on this feature?
Works for me pretty well. Example configuration:
kouncil:
clusters:
- name: localhost
kafka:
properties:
security:
protocol: SASL_PLAINTEXT
sasl:
mechanism: SCRAM-SHA-256
jaas:
config: org.apache.kafka.common.security.scram.ScramLoginModule required username="username" password="password";
brokers:
- host: localhost
port: 9092
Are there any environment variables which can be passed for the username and password in the docker run command ?
docker run -d -p 8070:8080 -e bootstrapServers="localhost:9092" consdata/kouncil:latest
With the newest release (ver 1.5) all topics around authentication and TLS are implemented. Feel free to raise a question if anything that you need is missing.