From b77e49466047a54273a43dae04e688da2e931df8 Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Sat, 27 Dec 2025 13:13:43 +0900 Subject: [PATCH] [DUTYMATE-137] chore: Add scheduled job to reset auto-generation count monthly --- Modules/AWS/EventBridge/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Modules/AWS/EventBridge/main.tf b/Modules/AWS/EventBridge/main.tf index 8267aad..8829212 100644 --- a/Modules/AWS/EventBridge/main.tf +++ b/Modules/AWS/EventBridge/main.tf @@ -30,6 +30,12 @@ locals { http_method = "PUT", endpoint = "https://api.${var.domain_name}/api/holiday/update" }, + auto_gen_cnt = { + name = "auto-gen-cnt", + schedule = "cron(0 15 L * ? *)", + http_method = "PUT", + endpoint = "https://api.${var.domain_name}/api/member/auto-gen-cnt" + }, login_log = { name = "login-log", schedule = "cron(5 15 * * ? *)",