Apache Kafka AclList

Apache Kafka AclList

Certified

List Kafka ACLs matching a filter

Lists every ACL matching the given filter using the Kafka AdminClient. Unset filter fields match any value; an empty filter lists every ACL on the cluster.

yaml
type: io.kestra.plugin.kafka.AclList

List every ACL granted on a tenant's topic namespace

yaml
id: kafka_acl_list
namespace: company.team

tasks:
  - id: list_acls
    type: io.kestra.plugin.kafka.AclList
    properties:
      bootstrap.servers: localhost:9092
    resourceType: TOPIC
    resourceName: tenant_acme_
    patternType: PREFIXED
Properties

Kafka AdminClient properties

Must include bootstrap.servers; accepts any Kafka AdminClient config. Provide base64-encoded content for ssl.keystore.location and ssl.truststore.location when using SSL.

Host filter

Matches any host when unset.

Possible Values
ALLREADWRITECREATEDELETEALTERDESCRIBECLUSTER_ACTIONDESCRIBE_CONFIGSALTER_CONFIGSIDEMPOTENT_WRITE

Operation filter

Matches any operation when unset.

Possible Values
LITERALPREFIXEDMATCH

Resource pattern type filter

Matches any pattern type when unset.

Possible Values
ALLOWDENY

Permission type filter

Matches any permission type when unset.

Reference (ref) of the pluginDefaults to apply to this task.

Principal filter

For example User: alice. Matches any principal when unset.

Resource name filter

Matches any resource name when unset.

Possible Values
TOPICGROUPCLUSTERTRANSACTIONAL_IDDELEGATION_TOKENUSER

Resource type filter

Matches any resource type when unset.

DefaultPT30S

AdminClient call timeout

Maximum duration to wait for each AdminClient operation to complete before failing the task. Defaults to PT30S (30 seconds).

SubTypeobject

Matching ACLs

Each entry contains resourceType, resourceName, patternType, principal, host, operation and permissionType.