2024-06-21 16:02:42 +00:00
|
|
|
variable "admin_username" {
|
2024-06-28 10:43:20 +00:00
|
|
|
type = string
|
2024-06-21 16:02:42 +00:00
|
|
|
description = "The username of the admin user"
|
2024-06-28 10:43:20 +00:00
|
|
|
default = "admin"
|
2024-06-21 16:02:42 +00:00
|
|
|
}
|
|
|
|
variable "domain" {
|
2024-06-28 10:43:20 +00:00
|
|
|
type = string
|
2024-06-21 16:02:42 +00:00
|
|
|
description = "The domain name of the minio instance"
|
|
|
|
}
|
|
|
|
variable "network" {
|
|
|
|
type = object({
|
2024-06-28 10:43:20 +00:00
|
|
|
id = string
|
2024-06-21 16:02:42 +00:00
|
|
|
name = string
|
|
|
|
})
|
|
|
|
description = "The network to attach the minio service to"
|
|
|
|
}
|
|
|
|
variable "storage_path" {
|
2024-06-28 10:43:20 +00:00
|
|
|
type = string
|
|
|
|
description = "The path to the storage directory to use"
|
2024-06-21 16:02:42 +00:00
|
|
|
}
|