Skip to content

Commit

Permalink
Fix doc about SCRAM
Browse files Browse the repository at this point in the history
  • Loading branch information
gfinocchiaro committed Mar 20, 2024
1 parent 3c5d405 commit 71c5855
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -618,11 +618,11 @@ Example:
_Mandatory if [authentication](#authenticationenable) is enabled_. The SASL mechanism type. Kafka Connector accepts the following authentication mechanisms:

- `PLAIN` (the default value)
- `SCRAM-256`
- `SCRAM-512`
- `SCRAM_256`
- `SCRAM_512`
- `GSSAPI`

In the case of `PLAIN`, `SCRAM-256`, and `SCRAM-512` mechanisms, the credentials must be configured through the following mandatory parameters (which are not allowed for `GSSAPI`):
In the case of `PLAIN`, `SCRAM_256`, and `SCRAM_512` mechanisms, the credentials must be configured through the following mandatory parameters (which are not allowed for `GSSAPI`):

- `authentication.username`, the username.
- `authentication.password`, the password.
Expand Down
6 changes: 3 additions & 3 deletions kafka-connector-project/dist/adapters.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,16 +187,16 @@
Kafka Connector supports the following authentication mechanisms:
- PLAIN
- SCRAM-256
- SCRAM-512
- SCRAM_256
- SCRAM_512
- GSSAPI
Default value: PLAIN.-->
<!--
<param name="authentication.mechanism">PLAIN</param>
-->

<!-- Mandatory if authentication.mechanism is one of PLAIN, SCRAM-256, SCRAM-512. The credentials. -->
<!-- Mandatory if authentication.mechanism is one of PLAIN, SCRAM_256, SCRAM_512. The credentials. -->
<!--
<param name="authentication.username">authorized-kafka-user</param>
<param name="authentication.password">authorized-kafka-user-password</param>
Expand Down

0 comments on commit 71c5855

Please sign in to comment.