homelab/terraform/modules/twitchminer/job.tf

6 lines
195 B
Terraform
Raw Normal View History

2024-05-03 20:41:43 -03:00
resource "nomad_job" "app_twitchminer" {
jobspec = templatefile("${path.module}/conf/twitchminer.hcl", {
NOMAD_ALLOC_DIR = "/alloc"
RUN_FILE = data.template_file.runpy.rendered
})
}