mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-07 16:06:35 -03:00
6 lines
195 B
Terraform
6 lines
195 B
Terraform
|
resource "nomad_job" "app_twitchminer" {
|
||
|
jobspec = templatefile("${path.module}/conf/twitchminer.hcl", {
|
||
|
NOMAD_ALLOC_DIR = "/alloc"
|
||
|
RUN_FILE = data.template_file.runpy.rendered
|
||
|
})
|
||
|
}
|