Skip to content

Commit

Permalink
fix: ScramLoginModule is a scram package not plain
Browse files Browse the repository at this point in the history
  • Loading branch information
phiz71 committed Jan 6, 2025
1 parent 14bf3b2 commit 1ab2234
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ${this.trustStoreConfig}`,
scram256Config = computed(
() => `security.protocol=SASL_SSL
sasl.mechanism=SCRAM-SHA-256
sasl.jaas.config=org.apache.kafka.common.security.plain.ScramLoginModule required \\
sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required \\
username="${this.apiKeyConfigUsername()}" \\
password="${this.apiKey()}";
${this.trustStoreConfig}`,
Expand All @@ -68,7 +68,7 @@ ${this.trustStoreConfig}`,
scram512Config = computed(
() => `security.protocol=SASL_SSL
sasl.mechanism=SCRAM-SHA-512
sasl.jaas.config=org.apache.kafka.common.security.plain.ScramLoginModule required \\
sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required \\
username="${this.apiKeyConfigUsername()}" \\
password="${this.apiKey()}";
${this.trustStoreConfig}`,
Expand Down

0 comments on commit 1ab2234

Please sign in to comment.