18 lines
361 B
Terraform
18 lines
361 B
Terraform
|
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
|
||
|
}
|
||
|
}
|