Files
a13labs.infra/terraform/apps/dev-01/secrets.tf
T
alexandre.pires 829ab48919 feat: Add SearXNG module and update infrastructure
- Introduced a new SearXNG module with configuration for Kubernetes deployment, service, and ingress.
- Updated existing Terraform app modules to include SearXNG in both dev-01 and prod-01 environments.
- Added necessary variables and secrets for SearXNG in the respective Terraform files.
- Updated Dockerfiles for llama.cpp and ollama to use latest versions.
- Enhanced security and hardening defaults in Kubernetes deployments.
- Improved documentation for Copilot instructions and Terraform workflows.
2026-05-20 20:58:02 +02:00

36 lines
811 B
Terraform

variable "nextcloud_db_passwd" {
description = "Password for the Nextcloud database"
type = string
sensitive = true
}
variable "nextcloud_db_root_password" {
description = "Root password for the Nextcloud database"
type = string
sensitive = true
}
variable "nextcloud_admin_password" {
description = "Password for the Nextcloud admin user"
type = string
sensitive = true
}
variable "telegram_bot_token" {
description = "Telegram bot token for Alertmanager notifications"
type = string
sensitive = true
}
variable "webui_secret_key" {
description = "The secret key for WEBUI"
type = string
sensitive = true
}
variable "searxng_secret_key" {
description = "The secret key for SearXNG"
type = string
sensitive = true
}