Closed bluedog13 closed 3 years ago
I think I may figured this out.
resource_name is what sets the resource/consumer group name that can be used in the requests. Setting this appropriately will give the required consumer group name
resource "confluentcloud_kafka_acl" "consumer-group-test-topic" {
kafka_cluster = var.cluster_id
resource_type = "GROUP"
resource_name = <desired-consumer-group-name>
pattern_type = "LITERAL"
.......................................
Thanks.
Is there a way to assign a service account and a consumer group while creating an acl for a topic?
I am trying to replicate the below feature from here
Below is what I have - based on the examples. From what I understand - I don't have an option to assign service account to the acl's and from what I understand, principal is not the same as service account (ex: sa-55555)
Is the below statement the equivalent of assigning the service account?
acl for topic operation
What will be the name of the consumer group after applying acl for consumer group and can the name be customized?
Much appreciated