18 lines
338 B
Terraform
18 lines
338 B
Terraform
|
variable "minio_region" {
|
||
|
description = "Default MINIO region"
|
||
|
default = "us-east-1"
|
||
|
}
|
||
|
|
||
|
variable "minio_server" {
|
||
|
description = "Default MINIO host and port"
|
||
|
default = "api-minio.front.kjuulh.io:443"
|
||
|
}
|
||
|
|
||
|
variable "minio_user" {
|
||
|
description = "MINIO user"
|
||
|
}
|
||
|
|
||
|
variable "minio_password" {
|
||
|
description = "MINIO password"
|
||
|
}
|