CreateBucket
Create a bucket
yaml
type: "io.kestra.plugin.minio.CreateBucket"
Create a new bucket with some options
yaml
id: minio_create_bucket
namespace: company.team
tasks:
- id: create_bucket
type: io.kestra.plugin.minio.CreateBucket
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"
Create a new bucket on an S3-compatible storage — here, Spaces Object Storage from Digital Ocean.
yaml
id: s3_compatible_bucket
namespace: company.team
tasks:
- id: create_bucket
type: io.kestra.plugin.minio.CreateBucket
accessKeyId: "<access_key>"
secretKeyId: "<secret_key>"
endpoint: https://<region>.digitaloceanspaces.com #example region: nyc3, tor1
bucket: "kestra-test-bucket"
Dynamic YES
Access Key Id for authentication.
Dynamic YES
The bucket name.
Dynamic YES
URL to the MinIO endpoint.
Dynamic YES
Dynamic YES
MinIO region with which the SDK should communicate.
Dynamic YES
Secret Key Id for authentication.