Ian Fijolek
d5078b24da
Occasionally I run into issues with Wesher. This makes it easier to disable use of Wesher by setting TF_VAR_use_wesher to false.
31 lines
640 B
HCL
31 lines
640 B
HCL
resource "nomad_job" "backup" {
|
|
hcl2 {
|
|
enabled = true
|
|
}
|
|
|
|
jobspec = templatefile("${path.module}/backup.nomad", {
|
|
module_path = path.module,
|
|
batch_node = null,
|
|
use_wesher = var.use_wesher
|
|
})
|
|
}
|
|
|
|
resource "nomad_job" "backup-oneoff" {
|
|
# TODO: Get list of nomad hosts dynamically
|
|
for_each = toset(["n1", "n2", "pi4"])
|
|
# for_each = toset([
|
|
# for node in data.consul_service.nomad.service :
|
|
# node.node_name
|
|
# ])
|
|
|
|
hcl2 {
|
|
enabled = true
|
|
}
|
|
|
|
jobspec = templatefile("${path.module}/backup.nomad", {
|
|
module_path = path.module,
|
|
batch_node = each.key,
|
|
use_wesher = var.use_wesher
|
|
})
|
|
}
|