add mcaptcha but disabled as we found another way[ci skip]

This commit is contained in:
Viktor Barzin 2026-01-24 18:43:43 +00:00
parent 6e4cfb4c3a
commit 82ae4b411a
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
3 changed files with 316 additions and 0 deletions

View file

@ -136,6 +136,9 @@ variable "aiostreams_database_connection_string" { type = string }
variable "actualbudget_credentials" { type = map(any) }
variable "speedtest_db_password" { type = string }
variable "freedify_credentials" { type = map(any) }
variable "mcaptcha_postgresql_password" { type = string }
variable "mcaptcha_cookie_secret" { type = string }
variable "mcaptcha_captcha_salt" { type = string }
provider "kubernetes" {
config_path = var.prod ? "" : "~/.kube/config"
@ -563,6 +566,10 @@ module "kubernetes_cluster" {
speedtest_db_password = var.speedtest_db_password
freedify_credentials = var.freedify_credentials
mcaptcha_postgresql_password = var.mcaptcha_postgresql_password
mcaptcha_cookie_secret = var.mcaptcha_cookie_secret
mcaptcha_captcha_salt = var.mcaptcha_captcha_salt
}