-
-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support resource_pattern_type_filter #39
Conversation
👋 @dmazhar-cogniance If you want to try this out, you can grab the binary (for linux) from CI @ Not exactly sure how to write kafka acl's, but a quick run of this config seemed to work resource "kafka_acl" "test" {
resource_name = "syslog*"
resource_type = "Topic"
resource_pattern_type_filter = "prefixed"
acl_principal = "User:Alice"
acl_host = "*"
acl_operation = "Write"
acl_permission_type = "Allow"
} |
17fcd81
to
1cd0208
Compare
Hi! Thanks for such a quick reaction :) |
It looks like the ACLs are not deleted still. Not sure regarding sarama, but |
Thanks for the details. 🤔 There's some issues with how ACLFilters are constructed, I'll need to take a look at the |
😅 Whoops, looks like I was sending The new build should fix deletion. |
Works like a charm now! Thanks again 👍 |
🙌 Great, I'll merge once I figure out the whole Kafka v1 / v2 compatibility 😄 |
efa955e
to
3104164
Compare
448d87f
to
162c772
Compare
162c772
to
a7c18af
Compare
Went with a slightly different approach over in #50 |
Should address #38