add emo instance for actual budget [ci skip]

This commit is contained in:
Viktor Barzin 2026-01-17 14:57:57 +00:00
parent 474da4efe5
commit 1ace09f1ea

View file

@ -48,3 +48,15 @@ module "anca" {
budget_encryption_password = lookup(var.credentials["anca"], "password", null)
sync_id = lookup(var.credentials["anca"], "sync_id", null)
}
# https://budget-emo.viktorbarzin.me/
module "emo" {
source = "./factory"
name = "emo"
tag = "edge"
tls_secret_name = var.tls_secret_name
depends_on = [kubernetes_namespace.actualbudget]
tier = var.tier
budget_encryption_password = lookup(var.credentials["emo"], "password", null)
sync_id = lookup(var.credentials["emo"], "sync_id", null)
}