Matthew Baggett
e8a89352e2
Some checks failed
Trunk Check / Trunk Check Runner (push) Failing after 2s
25 lines
No EOL
612 B
HCL
25 lines
No EOL
612 B
HCL
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"
|
|
}
|
|
variable "expose_ports" {
|
|
type = bool
|
|
description = "Expose the minio ports to the outside world"
|
|
default = false
|
|
} |