Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,11 @@ This grants:
====
**Schema Registry ACLs are only for Schema Registry operations.** For complete data migration, you must also use Kafka ACLs:

* **Topics:** READ (source), WRITE/CREATE/DESCRIBE/ALTER (target)
* **Consumer groups:** READ (source), CREATE/READ (target)
* **Cluster:** DESCRIBE (both), CREATE (target)
* **Topics:** `READ`, `DESCRIBE_CONFIGS` (source); `WRITE`/`CREATE`/`DESCRIBE`/`ALTER`/`DESCRIBE_CONFIGS` (target)
* **Consumer groups:** `READ` (source), `CREATE`/`READ` (target)
* **Cluster:** `DESCRIBE` (both), `CREATE` (target)

`READ` on a topic implicitly grants `DESCRIBE`, but not `DESCRIBE_CONFIGS`. Redpanda Migrator reads each source topic's configuration (`DESCRIBE_CONFIGS`) to recreate it on the target, so a consumer-only ACL on the source is not sufficient: without `DESCRIBE_CONFIGS` on the source topics, topic creation fails with `TOPIC_AUTHORIZATION_FAILED`.

See xref:manage:security/authorization/acl.adoc[Configure Access Control Lists] for Kafka ACL configuration.
====
Expand Down
Loading