feat(sftpgo): add TLS support and internal certificate management

This commit is contained in:
2025-05-08 22:36:47 +02:00
parent 4d4f085c3e
commit 9de7d52192
12 changed files with 285 additions and 116 deletions
+7 -3
View File
@@ -12,8 +12,12 @@ variable "tag" {
variable "websites" {
description = "A list of websites to be deployed"
type = map(object({
domain_name = string
fqdn = list(string)
config = optional(string, "")
domain_name = string
fqdn = list(string)
config = optional(string, "")
tls = optional(bool, false)
issuer = optional(string, "internal-ca")
custom_snippet = optional(string, "")
}))
}