homelab-nomad/core/blocky/blocky.tf

22 lines
355 B
Terraform
Raw Normal View History

2022-02-28 20:07:34 +00:00
locals {
2022-03-13 17:13:19 +00:00
config_data = templatefile(
"${path.module}/config.yml",
{
base_hostname = var.base_hostname,
2022-03-13 17:13:19 +00:00
}
)
2022-02-28 20:07:34 +00:00
}
resource "nomad_job" "blocky" {
hcl2 {
enabled = true
vars = {
2022-11-02 19:32:27 +00:00
"config_data" = local.config_data,
2022-02-28 20:07:34 +00:00
}
}
jobspec = templatefile("${path.module}/blocky.nomad", {
use_wesher = var.use_wesher,
})
2022-02-28 20:07:34 +00:00
}