{ tflib, elib, ... }: let inherit (elib) nomadJob; inherit (tflib) tf; in { resource."nomad_job"."mesh" = nomadJob { count = tf "var.dont_deploy_containers ? 0 : 1"; jobspec = ./job.hcl; vars = { "datacenters" = builtins.toJSON [ "do-1" "homelab-1" ]; }; }; }