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

25 lines
612 B
Terraform
Raw Permalink Normal View History

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
}
2024-07-08 15:51:54 +00:00
variable "expose_ports" {
2024-07-08 15:57:53 +00:00
type = bool
description = "Expose the minio ports to the outside world"
default = false
2024-07-08 15:51:54 +00:00
}