IAC/inputs.tf

19 lines
No EOL
396 B
HCL

variable "base_domain" {
description = "The base domain for the stack"
type = string
default = "cluster.grey.ooo"
}
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
}
}