(cloud) allows for automated restore.

This commit is contained in:
2023-03-29 16:52:10 -07:00
parent 420bd126bd
commit 392b007920
3 changed files with 113 additions and 5 deletions

View File

@@ -458,3 +458,15 @@ module "load_historical_sales_job" {
cpu = 1024
}
*/
module "restore_from_backup_job" {
source = "./background-job/"
ecs_cluster = var.ecs_cluster
task_role_arn = var.task_role_arn
stage = var.stage
job_name = "restore-from-backup"
execution_role_arn = var.execution_role_arn
use_schedule = false
memory = 8192
cpu = 4096
}