locals { config_data = file("${path.module}/config.yml") } resource "nomad_job" "blocky" { hcl2 { enabled = true vars = { "config_data" = local.config_data, } } jobspec = templatefile("${path.module}/blocky.nomad", { use_wesher = var.use_wesher, }) }