Modularize your triggers and schedules with Terraform
Scale your codebase using Terraform to template and make scheduling a breeze
Introduction
As seen in this terraform templating guide, you can leverage Terraform to template and define flows.
Managing triggers and schedules can be a tedious task, especially when you have a lot of flows generating peak hours due to reuse of same trigger schedules.
This guide will show you how to use Terraform to define triggers and schedules for your flows with modularity.
Note: we created the repo kestra-flows-template for you to directly start from a very scalable codebase.
Code structure
.
āāā environment/
āāā development
āāā production/ # Contains subfolders defining Kestra flows resources
ā āāā airbyte/
ā āāā ...
āāā modules/ # Terraform modules to be used in environments
ā āāā trigger_cron/
ā āāā trigger_cron_hourly_random/
ā āāā trigger_flow/
ā āāā trigger_webhook/
ā āāā ...
We will leverage null_resource
to create reusable resources to DRY (Do not Repeat Yourself) your trigger definitions.
With Terraform version >= 1.4, you can directly use terraform_data
if preferred. For backward compatbility we will use null_resource
.
Example of Cron schedule implementation
Below an example of implementation for a Terraform module that defines a cron schedule trigger.
triggers.yml
triggers:
- id: ${cron-name}
type: io.kestra.core.models.triggers.types.Schedule
cron: "${cron-expression}"
lateMaximumDelay: "${late-maximum-delay}"
main.tf
resource "null_resource" "trigger_cron" {
triggers = {
value = templatefile("${path.module}/triggers.yml", {
cron-name = var.cron_name
cron-expression = var.cron_expression
late-maximum-delay = var.late_maximum_delay
})
}
}
variables.tf
variable "cron_expression" {
type = string
description = "Cron expression or supported expression like : @hourly"
default = null
}
variable "cron_name" {
type = string
description = "Provide a description of your Cron expression for simplicity"
default = null
}
variable "late_maximum_delay" {
type = string
description = "Allow to disable auto-backfill : if the schedule didn't start after this delay, the execution will be skipped."
}
outputs.tf
output "trigger_content" {
value = null_resource.trigger_cron.triggers.value
}
Usage of this module would look like :
module "trigger_purge" {
source = "../../../../modules/trigger_cron"
cron_expression = "0 0 * * 0"
cron_name = "weekly_kestra_purge"
late_maximum_delay = "PT1H"
}
module "my_flow_module" {
source = "../../../../modules/my_flow_module"
trigger = module.trigger_purge.trigger_content
}
Module my_flow_module
will use the trigger defined in trigger_purge
module.
Scaling your codebase with Terraform trigger modules
You can check here an example using cron trigger using fully terraform.
Was this page helpful?