1
0
mirror of https://github.com/minio/docs.git synced 2025-07-31 18:04:52 +03:00

DOCS-784: Fix Kafka TLS Client Auth reference (#816)

This commit is contained in:
Ravind Kumar
2023-04-14 11:49:32 -04:00
committed by GitHub
parent 508940787b
commit e7c6473394

View File

@ -845,12 +845,34 @@ MinIO supports the following mechanisms:
.. start-minio-notify-kafka-tls-client-auth
Specify the client authentication policy of the Kafka broker(s). See
`ClientAuthType <https://golang.org/pkg/crypto/tls/#ClientAuthType>`__ for
more information on possible values for this field.
Specify the client authentication type of the Kafka broker(s).
The following table lists the supported values and their mappings
.. https://pkg.go.dev/crypto/tls#ClientAuthType ?
.. list-table::
:header-rows: 1
:widths: 20 80
:width: 100%
* - Value
- Authentication Type
* - 0
- ``NoClientCert``
* - 1
- ``RequestClientCert``
* - 2
- ``RequireAnyClientCert``
* - 3
- ``VerifyClientCertIfGiven``
* - 4
- ``RequireAndVerifyClientCert``
See `ClientAuthType <https://golang.org/pkg/crypto/tls/#ClientAuthType>`__ for more information on each client auth type.
.. end-minio-notify-kafka-tls-client-auth
.. start-minio-notify-kafka-sasl-root