...

Text file src/github.com/twmb/franz-go/examples/sasl/README.md

Documentation: github.com/twmb/franz-go/examples/sasl

     1# SASL & connecting to a Kafka cluster
     2
     3In this directory you'll find some examples demonstrating how to create a client for the various supported Kafka authentication options.
     4
     5## SASL Support
     6
     7Supported SASL mechanisms are:
     8
     9- `GSSAPI` / (Kerberos)
    10- `OAUTHBEARER`
    11- `PLAIN`
    12- `SCRAM-SHA-256` / `SCRAM-SHA-512`
    13- `AWS_MSK_IAM`
    14
    15## TLS Support
    16
    17This client does not provide any TLS on its own, however it does provide a Dialer option to set how connections should be dialed to brokers. You can use the dialer to dial TLS as necessary, with any specific custom TLS configuration you desire.

View as plain text