Details
Description
When we try to execute the statement to create an Alter Topic ACL in version 2.2 of
Kafka through the kafka-acls.
"""
kafka-acls --authorizer-properties zookeeper.connect=fastdata-zk-discovery:2181 \
--add \
--allow-principal User:MyUser \
--operation Alter \
--topic topic \
"""
We get the following error:
ResourceType TOPIC only supports operations
"""
Read,All,AlterConfigs,DescribeConfigs,Delete,Write,Create,Describe
"""
It should be possible to create an Alter Topic ACL, according to the documentation.
Thanks