The Minio Resource Provider lets you manage releases in a Minio installation.
This package is available in many languages in the standard packaging formats.
To use from JavaScript or TypeScript in Node.js, install using either npm
:
$ npm install @pulumi/minio
or yarn
:
$ yarn add @pulumi/minio
To use from Python, install using pip
:
$ pip install pulumi_minio
To use from Go, use go get
to grab the latest version of the library
$ go get github.com/pulumi/pulumi-minio/sdk
To use from .NET, install using dotnet add package
:
$ dotnet add package Pulumi.Minio
The following configuration points are available:
minio:minioServer
- (Required) Minio Host and Port. It must be provided, but it can also be sourced from theMINIO_ENDPOINT
environment variableminio:minioAccessKey
- (Required) Minio Access Key. It must be provided, but it can also be sourced from theMINIO_ACCESS_KEY
environment variableminio:minioSecretKey
- (Required) Minio Secret Key. It must be provided, but it can also be sourced from theMINIO_SECRET_KEY
environment variableminio:minioRegion
- (Optional) Minio Region (default: us-east-1
).minio:minioApiVersion
- (Optional) Minio API Version (type: string, options:v2
orv4
, default:v4
).minio:minioSsl
- (Optional) Minio SSL enabled (default:false
). It can also be sourced from theMINIO_ENABLE_HTTPS
environment variable
For further information, please visit the Minio provider docs or for detailed reference documentation, please visit the API docs.