Download a file from a MinIO bucket.
type: "io.kestra.plugin.minio.download"Examples
id: minio_download
namespace: company.team
tasks:
- id: download_from_storage
type: io.kestra.plugin.minio.Download
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"
key: "path/to/file"
Download file from an S3-compatible storage — here, Spaces Object Storage from Digital Ocean.
id: s3_compatible_download
namespace: company.team
tasks:
- id: download_from_storage
type: io.kestra.plugin.minio.Download
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
endpoint: https://<region>.digitaloceanspaces.com
bucket: "kestra-test-bucket"
key: "data/orders.csv"
Properties
accessKeyId string
Access Key Id for authentication.
bucket string
The bucket name.
caPem string
CA PEM certificate content
CA certificate as text, used to verify SSL/TLS connections to custom MinIO endpoints.
clientPem string
Client PEM certificate content
PEM client certificate as text, used to authenticate the connection to MinIO (mTLS).
endpoint string
URL to the MinIO endpoint.
key string
The key of a file to download.
region string
MinIO region with which the SDK should communicate.
secretKeyId string
Secret Key Id for authentication.
ssl Non-dynamicSslOptions
SSL/TLS configuration options
versionId string
The specific version of the object.
Outputs
contentLength integer
The size of the body in bytes.
uri string
uriDefinitions
io.kestra.core.http.client.configurations.SslOptions
insecureTrustAllCertificates booleanstring
Whether 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.