This commit is contained in:
2023-04-27 11:33:54 -07:00
7 changed files with 246 additions and 91 deletions

View File

@@ -470,3 +470,16 @@ module "restore_from_backup_job" {
memory = 8192
cpu = 4096
}
module "ntg_job" {
schedule = "rate(6 hours)"
source = "./background-job/"
ecs_cluster = var.ecs_cluster
task_role_arn = var.task_role_arn
stage = var.stage
job_name = "ntg"
execution_role_arn = var.execution_role_arn
use_schedule = false
memory = 4096
cpu = 1024
}