我在跟踪https://docs.confluent.io/current/kafka/authorization.html#adding-or-removing-a-principal-as-producer-or-consumer将acl添加到我的kafka集群。
根据上面的文档,我们可以添加主题名前缀的acl,如:
bin/kafka-acls.sh --authorizer-properties zookeeper.connect=localhost:2181 \
--add --allow-principal User:Jane --producer --topic Test- --resource-pattern-type prefixed
这允许用户jane访问名称以test开头的所有主题-
我要找的是-我可以做同样的主题名称后缀?我的意思是如何允许用户jane访问名称以\u test结尾的所有主题
1条答案
按热度按时间mm9b1k5b1#
对于以下选项:
--resource-pattern-type
没有一个suffix
,但是有一个match
或者literal
.也许你可以试着用
'*_Test'
选择其中一个。