
Apache Kafka AclList
CertifiedList Kafka ACLs matching a filter
Apache Kafka AclList
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.
type: io.kestra.plugin.kafka.AclListExamples
List every ACL granted on a tenant's topic namespace
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
properties *Requiredobject
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 string
Host filter
Matches any host when unset.
operation string
ALLREADWRITECREATEDELETEALTERDESCRIBECLUSTER_ACTIONDESCRIBE_CONFIGSALTER_CONFIGSIDEMPOTENT_WRITEOperation filter
Matches any operation when unset.
patternType string
LITERALPREFIXEDMATCHResource pattern type filter
Matches any pattern type when unset.
permissionType string
ALLOWDENYPermission type filter
Matches any permission type when unset.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
principal string
Principal filter
For example User: alice. Matches any principal when unset.
resourceName string
Resource name filter
Matches any resource name when unset.
resourceType string
TOPICGROUPCLUSTERTRANSACTIONAL_IDDELEGATION_TOKENUSERResource type filter
Matches any resource type when unset.
timeout string
PT30SAdminClient call timeout
Maximum duration to wait for each AdminClient operation to complete before failing the task. Defaults to PT30S (30 seconds).
Outputs
acls array
Matching ACLs
Each entry contains resourceType, resourceName, patternType, principal, host, operation and permissionType.