Delete a file from a MinIO bucket.
type: "io.kestra.plugin.minio.delete"id: minio_delete
namespace: company.team
tasks:
- id: delete
type: io.kestra.plugin.minio.Delete
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"
key: "path/to/file"
Delete file from an S3-compatible storage — here, Spaces Object Storage from Digital Ocean.
id: s3_compatible_delete
namespace: company.team
tasks:
- id: delete
type: io.kestra.plugin.minio.Delete
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
endpoint: https://<region>.digitaloceanspaces.com
bucket: "kestra-test-bucket"
key: "path/to/file"
YESAccess Key Id for authentication.
YESThe bucket name.
NOIndicates whether Object Lock should bypass Governance-mode restrictions to process this operation.
YESCA PEM certificate content
CA certificate as text, used to verify SSL/TLS connections to custom MinIO endpoints.
YESClient PEM certificate content
PEM client certificate as text, used to authenticate the connection to MinIO (mTLS).
YESURL to the MinIO endpoint.
YESThe key to delete.
YESMinIO region with which the SDK should communicate.
YESSecret Key Id for authentication.
NOSSL/TLS configuration options
NOWhether 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.