List objects on a MinIO bucket.
type: "io.kestra.plugin.minio.list"id: minio_list
namespace: company.team
tasks:
- id: list_objects
type: io.kestra.plugin.minio.List
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"
prefix: "sub-dir"
List files from an S3-compatible storage — here, Spaces Object Storage from Digital Ocean.
id: s3_compatible_list
namespace: company.team
tasks:
- id: list_objects
type: io.kestra.plugin.minio.List
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
endpoint: https://<region>.digitaloceanspaces.com
bucket: "kestra-test-bucket"
Access Key Id for authentication.
The bucket name.
CA PEM certificate content
CA certificate as text, used to verify SSL/TLS connections to custom MinIO endpoints.
Client PEM certificate content
PEM client certificate as text, used to authenticate the connection to MinIO (mTLS).
A delimiter is a character you use to group keys.
URL to the MinIO endpoint.
BOTHFILESDIRECTORYBOTHThe type of objects to filter: files, directory, or both.
trueIndicates whether task should include versions in output.
Marker is where you want to start listing from.
Start listing after this specified key. Marker can be any key in the bucket.
1000Sets the maximum number of keys returned in the response.
By default, the action returns up to 1,000 key names. The response might contain fewer keys but will never contain more.
Limits the response to keys that begin with the specified prefix.
trueIndicates whether it should look into subfolders.
A regexp to filter on full key.
ex:
regExp: .* to match all files
regExp: .*2020-01-0.\\.csv to match files between 01 and 09 of january ending with .csv
MinIO region with which the SDK should communicate.
Secret Key Id for authentication.
SSL/TLS configuration options
Limits the response to keys that ends with the specified string.
date-timeuriWhether to disable checking of the remote SSL certificate.
Only applies if no trust store is configured. Note: This makes the SSL connection insecure and should only be used for testing. If you are using a self-signed certificate, set up a trust store instead.