homelab/terraform-home/modules/redis/job.tf

6 lines
127 B
Terraform
Raw Normal View History

2024-10-23 20:25:38 -03:00
resource "nomad_job" "app" {
jobspec = templatefile("${path.module}/conf/redis.hcl", {
2024-10-24 03:03:03 -03:00
NOMAD_ALLOC_DIR = "/alloc"
2024-10-23 20:25:38 -03:00
})
}