Re: Authorize only creator user over auto-created topic

2020-02-04 Thread Andrés Garagiola
Thank Andrew, I was just wondering if there is a configuration in Kafka to do that instead of creating the ACLs manually. I know that there are multiple ACLs possible configurations, I don't expect a Kafka configuration for every one of them but I think that this case could be considered a common

Re: Authorize only creator user over auto-created topic

2020-02-04 Thread Andrew Schofield
Hi, The auto-created topic would be created by an application using a topic that does not yet exist. So, I'd create ACLs for that application's principal granting CREATE, READ and WRITE permissions. If no other user has permission to that topic, you'd get what you'd need. Thanks, Andrew Schofie

Authorize only creator user over auto-created topic

2020-02-04 Thread Andrés Garagiola
Hi all, I'm wondering if it is possible to configure Kafka in such a way that only the creator user of an auto-created topic and the superusers can have read and write permissions over that topic. I want to avoid another user to get access to auto-created topics. Is there a configuration that wor