You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Logging mode can be "development", "production" or "raw". Do not forget to change this value for production environment.
@@ -1226,11 +1221,40 @@ kafka:
1226
1221
# Required to use Kafka driver
1227
1222
brokers: ["127.0.0.1:9092", "127.0.0.1:9002"]
1228
1223
1224
+
# SSL/TLS configuration
1225
+
#
1226
+
# Optional, default: empty
1227
+
tls:
1228
+
# Secure connection timeout
1229
+
#
1230
+
# Examples: "2s", "5m"
1231
+
# Optional, default: "10s"
1232
+
timeout: "10s"
1233
+
1234
+
# Path to the key file
1235
+
#
1236
+
# This option is required
1237
+
key: ""
1238
+
1239
+
# Path to the certificate
1240
+
#
1241
+
# This option is required
1242
+
cert: ""
1243
+
1244
+
# Path to the CA certificate, defines the set of root certificate authorities that servers use if required to verify a client certificate. Used with the `client_auth_type` option.
1245
+
#
1246
+
# This option is optional
1247
+
root_ca: ""
1248
+
1249
+
# Client auth type.
1250
+
#
1251
+
# This option is optional. Default value: no_client_certs. Possible values: request_client_cert, require_any_client_cert, verify_client_cert_if_given, require_and_verify_client_cert, no_client_certs
1252
+
client_auth_type: no_client_certs
1253
+
1229
1254
# SASL authentication options to use for all connections. Depending on the auth type, plain/SCRAM or aws_msk_plain sections should be removed.
1230
1255
#
1231
1256
# Optional, default: empty
1232
1257
sasl:
1233
-
1234
1258
# ----------- 1. PLAIN and SCRAM auth section ---------------
0 commit comments