This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/modules/minio/inputs.tf
2024-06-21 18:02:42 +02:00

20 lines
457 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"
}