Kafka ACL through service account

What I am trying to do?

I was trying to create a S3 Sink through terraform. As part of that I had to create bunch of ACLs. I am following this documentation

https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/resources/confluent_connector

Error
I am able to create ACL to read on target topic, however when I run terraform plan next time, I am getting following error

Error: error reading Kafka ACLs: 401 Unauthorized: Unauthorized
│ 
│   with confluent_kafka_acl.app-connector-read-on-target-topic[14],
│   on sink.tf line 155, in resource "confluent_kafka_acl" "app-connector-read-on-target-topic":
│  155: resource "confluent_kafka_acl" "app-connector-read-on-target-topic" {

Any help/suggestions would be really appreciated