CreateBucket CreateBucket

yaml
type: "io.kestra.plugin.minio.CreateBucket"

Create a bucket

Examples

Create a new bucket with some options

yaml
id: "create_bucket"
type: "io.kestra.plugin.minio.CreateBucket"
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"

Properties

accessKeyId

  • Type: string
  • Dynamic: ✔️
  • Required:

Access Key Id for authentication.

bucket

  • Type: string
  • Dynamic: ✔️
  • Required:

The bucket name.

endpoint

  • Type: string
  • Dynamic: ✔️
  • Required:

URL to the MinIO endpoint.

objectLockEnabledForBucket

  • Type: boolean
  • Dynamic:
  • Required:

Specifies whether you want Object Lock to be enabled for the new bucket.

region

  • Type: string
  • Dynamic: ✔️
  • Required:

MinIO region with which the SDK should communicate.

secretKeyId

  • Type: string
  • Dynamic: ✔️
  • Required:

Secret Key Id for authentication.

Outputs

bucket

  • Type: string
  • Dynamic:
  • Required:

Definitions

Was this page helpful?