From 74fcb49572e69dbc2671431cecb721eee158a3c7 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Thu, 1 Feb 2024 12:39:51 -0800 Subject: [PATCH] Update daprdocs/content/en/reference/components-reference/supported-pubsub/setup-apache-kafka.md Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: Mark Fussell --- .../supported-pubsub/setup-apache-kafka.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-apache-kafka.md b/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-apache-kafka.md index 8a35eaa8b..8cf760722 100644 --- a/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-apache-kafka.md +++ b/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-apache-kafka.md @@ -113,7 +113,17 @@ The metadata `version` must be set to `1.0.0` when using Azure EventHubs with Ka Kafka supports a variety of authentication schemes and Dapr supports several: SASL password, mTLS, OIDC/OAuth2. With the added authentication methods, the `authRequired` field has been deprecated from the v1.6 release and instead the `authType` field should be used. If `authRequired` is set to `true`, Dapr will attempt to configure `authType` correctly -based on the value of `saslPassword`. This are the valid values for `authType`: `none`, `password`, `certificate`, `mtls`, `oidc` and `awsiam`. Note this is authentication only; authorization is still configured within Kafka except for `awsiam` which can also drive authorization decisions configured in AWS IAM. +based on the value of `saslPassword`. The valid values for `authType` are: +- `none` +- `password` +- `certificate` +- `mtls` +- `oidc` +- `awsiam` + +{{% alert title="Note" color="primary" %}} +`authType` is _authentication_ only. _Authorization_ is still configured within Kafka, except for `awsiam`, which can also drive authorization decisions configured in AWS IAM. +{{% /alert %}} #### None