Greatly simplifies keeping bank accounts in check

This commit is contained in:
2024-09-27 15:59:21 -07:00
parent b7d976cf19
commit 4c14e43734
7 changed files with 157 additions and 288 deletions

View File

@@ -293,19 +293,6 @@ module "reconcile_ledger_job" {
cpu = 2048
}
module "current_balance_cache" {
count = var.enable_schedules ? 1 : 0
source = "./background-job/"
ecs_cluster = var.ecs_cluster
task_role_arn = var.task_role_arn
stage = var.stage
schedule = "rate(30 minutes)"
job_name = "current-balance-cache"
execution_role_arn = var.execution_role_arn
memory = 2048
cpu = 512
}
module "yodlee2_job" {
count = var.enable_schedules ? 1 : 0
source = "./background-job/"