mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-12-01 20:46:12 +01:00
12 lines
227 B
Terraform
12 lines
227 B
Terraform
|
resource "nomad_job" "reicio" {
|
||
|
jobspec = file("${path.module}/job/reicio.hcl")
|
||
|
|
||
|
hcl2 {
|
||
|
enabled = true
|
||
|
vars = {
|
||
|
flake_ref = "${var.flake_host}?rev=${var.flake_rev}"
|
||
|
flake_sha = var.flake_sha
|
||
|
}
|
||
|
}
|
||
|
}
|