adds register invoice import

This commit is contained in:
2022-12-04 11:09:51 -08:00
parent 58fad1b4f1
commit 3e512a52ac
7 changed files with 394 additions and 19 deletions

View File

@@ -444,4 +444,16 @@ module "bulk_journal_import_job" {
use_schedule = false
memory = 4096
cpu = 1024
}
module "register_invoice_import_job" {
source = "./background-job/"
ecs_cluster = var.ecs_cluster
task_role_arn = var.task_role_arn
stage = var.stage
job_name = "register-invoice-import"
execution_role_arn = var.execution_role_arn
use_schedule = false
memory = 8192
cpu = 2048
}