diff --git a/services/service/main.tf b/services/service/main.tf index ed35d8d..e0971e2 100644 --- a/services/service/main.tf +++ b/services/service/main.tf @@ -14,6 +14,7 @@ resource "nomad_job" "service" { constraints = var.constraints docker_devices = var.docker_devices user = var.user + actions = var.actions service_port = var.service_port service_port_static = var.service_port_static @@ -245,3 +246,33 @@ module "oidc_client" { task = var.name } } + +# Action cron jobs +resource "nomad_job" "action_cron" { + for_each = tomap({ for action in var.actions : action.name => action if action.cron != null }) + jobspec = templatefile("${path.module}/service_scheduled.nomad", { + name = var.name + action_name = each.value.name + action_cron = each.value.cron + }) +} + +resource "nomad_acl_policy" "action_cron_workload_policy" { + for_each = resource.nomad_job.action_cron + + name = "service-action-${each.value.id}" + description = "Give custom service cron actions access to execute actions." + rules_hcl = < 0 ~} + args = ${jsonencode(action.args)} + %{~ endif ~} + } + %{~ endfor ~} %{~ for volume in host_volumes } volume_mount { volume = "${volume.name}" diff --git a/services/service/vars.tf b/services/service/vars.tf index 016112a..e76fb54 100644 --- a/services/service/vars.tf +++ b/services/service/vars.tf @@ -284,6 +284,17 @@ variable "use_wesher" { default = true } +variable "actions" { + description = "Nomad actions that should be part of the main task" + type = list(object({ + name = string + command = string + args = optional(list(string)) + cron = optional(string) + })) + default = [] +} + variable "service_check" { description = "Health check for main ingress service" type = object({