add credentials for ab bank sync cronjob [ci skip]

This commit is contained in:
Viktor Barzin 2026-01-10 20:01:06 +00:00
parent ff9e431544
commit 235a469dea
3 changed files with 22 additions and 12 deletions

View file

@ -111,6 +111,7 @@ variable "clickhouse_password" { type = string }
variable "clickhouse_postgres_password" { type = string }
variable "wealthfolio_password_hash" { type = string }
variable "aiostreams_database_connection_string" { type = string }
variable "actualbudget_credentials" { type = map(any) }
variable "defcon_level" {
@ -809,6 +810,7 @@ module "actualbudget" {
for_each = contains(local.active_modules, "actualbudget") ? { actualbudget = true } : {}
tls_secret_name = var.tls_secret_name
tier = local.tiers.edge
credentials = var.actualbudget_credentials
depends_on = [null_resource.core_services]
}