mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-28 11:06:15 +01:00
21 lines
285 B
Terraform
21 lines
285 B
Terraform
|
variable "datacenters" {
|
||
|
type = list(string)
|
||
|
}
|
||
|
|
||
|
terraform {
|
||
|
required_providers {
|
||
|
nomad = {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "nomad_job" "mesh" {
|
||
|
jobspec = file("${path.module}/main.hcl")
|
||
|
|
||
|
hcl2 {
|
||
|
enabled = true
|
||
|
vars = {
|
||
|
"datacenters" = jsonencode(var.datacenters)
|
||
|
}
|
||
|
}
|
||
|
}
|