2024-09-29 23:22:03 +00:00
|
|
|
variable "authentik_url" {
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "services" {
|
|
|
|
type = map(object({
|
|
|
|
name = string
|
2024-10-06 17:08:13 +00:00
|
|
|
host = string
|
|
|
|
dns = optional(list(object({
|
|
|
|
domain = string
|
|
|
|
name = optional(string)
|
|
|
|
alias = optional(string)
|
|
|
|
})))
|
|
|
|
backup = optional(list(object({
|
|
|
|
name = string
|
|
|
|
type = string
|
|
|
|
})))
|
|
|
|
ports = optional(list(string))
|
2024-10-13 14:33:09 +00:00
|
|
|
certificates = optional(list(string))
|
2024-09-29 23:22:03 +00:00
|
|
|
auth = bool
|
2024-10-09 00:29:08 +00:00
|
|
|
auth_cert = optional(string)
|
2024-09-29 23:22:03 +00:00
|
|
|
auth_redirects = optional(list(string))
|
|
|
|
s3 = bool
|
|
|
|
database = bool
|
|
|
|
}))
|
|
|
|
}
|