fix(job): revert testing

This commit is contained in:
Bertrand Lanson 2024-02-25 00:20:40 +01:00
parent 439675a4a2
commit 90641db703

View File

@ -12,7 +12,7 @@ resource "nomad_job" "this" {
purge_on_destroy = true purge_on_destroy = true
hcl2 { hcl2 {
allow_fs = true allow_fs = true
vars = var.jobs_variables[each.key] # contains(keys(var.jobs_variables), each.key) ? var.jobs_variables[each.key] : {} vars = contains(keys(var.jobs_variables), each.key) ? var.jobs_variables[each.key] : {}
} }
} }