IAC/inputs.tf
2025-01-09 09:01:54 +01:00

18 lines
No EOL
361 B
HCL

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