2025-01-09 08:01:54 +00:00
|
|
|
variable "base_domain" {
|
|
|
|
description = "The base domain for the stack"
|
|
|
|
type = string
|
2025-01-16 18:38:54 +00:00
|
|
|
default = "cluster.grey.ooo"
|
2025-01-09 08:01:54 +00:00
|
|
|
}
|
|
|
|
variable "acme_email" {
|
|
|
|
description = "The email address to use for ACME registration"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
variable "treafik_defaults" {
|
|
|
|
type = object({
|
|
|
|
ssl = bool
|
|
|
|
non-ssl = bool
|
|
|
|
})
|
|
|
|
default = {
|
|
|
|
ssl = true
|
|
|
|
non-ssl = false
|
|
|
|
}
|
|
|
|
}
|