Added auto-suspend, added wol proxy for ollama

This commit is contained in:
2025-06-22 18:43:55 +02:00
parent dab5520630
commit 6579e15394
16 changed files with 449 additions and 266 deletions
@@ -20,3 +20,17 @@ variable "issuer" {
default = "internal-ca"
}
variable "ollama_proxy" {
description = "Configuration for the Ollama proxy"
type = object({
enabled = bool
mac = optional(string, "")
ip = optional(string, "")
port = optional(string, "11434")
scheme = optional(string, "http")
})
default = {
enabled = false
}
}