iac/modules/caddy_reverse/variables.tf

17 lines
353 B
Terraform
Raw Normal View History

2025-01-10 15:10:39 +00:00
variable "vhosts" {
type = list(object({
domain = string
upstreams = list(string)
headers_down = optional(list(object({
modifier = optional(string, "")
name = string
value = string
})), [])
}))
}
variable "ssh_authorized_keys" {
type = list(string)
nullable = false
}