Mongey / terraform-provider-kafka

Terraform provider for managing Apache Kafka Topics + ACLs
MIT License
517 stars 129 forks source link

ACL creation - Confluent Kafka #314

Open RajPathare opened 1 year ago

RajPathare commented 1 year ago

We’ve deployed Confluent Kafka with the cp-ansible codebase in our dev environment and it’s working well. Now, we’re planning to add some sasl scram users and align ACLs for them. To achieve this, we have created a terraform code which would connect to the kafka broker and create the required users + ACLs, but while running the code, we’re facing some issues.

The error: Kafka server: Security features are disabled.

przemekhys commented 1 year ago

Hi this error are return form kafka broker - 54 Security features are disabled.

https://kafka.apache.org/11/protocol.html

It looks like you don't have SASL/SCRAM properly configured on your broker. Do you connect to other clients this way?

If so, you can try to paste the logs from the terraform-provider-kafka provider at the debug level, maybe I will be able to help.