21 lines
457 B
Terraform
21 lines
457 B
Terraform
|
variable "admin_username" {
|
||
|
type = string
|
||
|
description = "The username of the admin user"
|
||
|
default = "admin"
|
||
|
}
|
||
|
variable "domain" {
|
||
|
type = string
|
||
|
description = "The domain name of the minio instance"
|
||
|
}
|
||
|
variable "network" {
|
||
|
type = object({
|
||
|
id = string
|
||
|
name = string
|
||
|
})
|
||
|
description = "The network to attach the minio service to"
|
||
|
}
|
||
|
variable "storage_path" {
|
||
|
type = string
|
||
|
description = "The path to the storage directory to use"
|
||
|
}
|