IAC/inputs.tf

18 lines
361 B
Terraform
Raw Permalink Normal View History

2025-01-09 08:01:54 +00:00
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
}
}