homelab/terraform/modules/icecast/job.tf

7 lines
130 B
Terraform
Raw Normal View History

2024-01-03 22:14:30 -03:00
resource "nomad_job" "app" {
jobspec = templatefile("${path.module}/conf/icecast.hcl", {
2024-10-24 03:03:03 -03:00
NOMAD_ALLOC_DIR = "/alloc"
2024-01-03 22:14:30 -03:00
})
}