IAC/inputs.tf
Matthew Baggett ddde0c525a
Some checks failed
Trunk Cache / Trunk Cache (push) Has been cancelled
Trunk Check / Trunk Check Runner (push) Has been cancelled
Trunk Upgrade / Upgrade Trunk (push) Has been cancelled
Refactorin
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
}
}