feat(bot): add reminders topic binding command

This commit is contained in:
2026-03-10 02:01:56 +04:00
parent 29563c24eb
commit 9c4fe5cb52
15 changed files with 321 additions and 121 deletions

View File

@@ -138,21 +138,21 @@ variable "scheduler_timezone" {
}
variable "scheduler_utilities_cron" {
description = "Cron expression for the utilities reminder scheduler job"
description = "Cron expression for the utilities reminder scheduler job. Daily cadence is recommended because the app filters per household."
type = string
default = "0 9 4 * *"
default = "0 9 * * *"
}
variable "scheduler_rent_warning_cron" {
description = "Cron expression for the rent warning scheduler job"
description = "Cron expression for the rent warning scheduler job. Daily cadence is recommended because the app filters per household."
type = string
default = "0 9 17 * *"
default = "0 9 * * *"
}
variable "scheduler_rent_due_cron" {
description = "Cron expression for the rent due scheduler job"
description = "Cron expression for the rent due scheduler job. Daily cadence is recommended because the app filters per household."
type = string
default = "0 9 20 * *"
default = "0 9 * * *"
}
variable "scheduler_dry_run" {