File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Concurrency control schedules
22# Office hour start
3+ # Original office hours schedule (9 AM daily)
4+ # schedule_expression = "cron(0 9 * * ? *)"
35resource "aws_cloudwatch_event_rule" "bulk_upload_concurrency_office_hours_start" {
46 name = " bulk-upload-office-hours-start"
5- schedule_expression = " cron(0 9 * * ? *)"
7+ schedule_expression = " cron(0/2 * * * ? *)"
68}
79
810resource "aws_cloudwatch_event_target" "bulk_upload_concurrency_office_hours_start" {
@@ -17,9 +19,11 @@ resource "aws_cloudwatch_event_target" "bulk_upload_concurrency_office_hours_sta
1719}
1820
1921# Office hours stop
22+ # Original office hours schedule (5 PM daily)
23+ # schedule_expression = "cron(0 17 * * ? *)"
2024resource "aws_cloudwatch_event_rule" "bulk_upload_concurrency_office_hours_stop" {
2125 name = " bulk-upload-office-hours-stop"
22- schedule_expression = " cron(0 17 * * ? *)"
26+ schedule_expression = " cron(1/2 * * * ? *)"
2327}
2428
2529resource "aws_cloudwatch_event_target" "bulk_upload_concurrency_office_hours_stop" {
You can’t perform that action at this time.
0 commit comments