Files
nomad/e2e/jobsubmissions/input/xyz.hcl
2023-05-30 09:20:32 -05:00

40 lines
527 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
variable "X" {
type = string
}
variable "Y" {
type = number
}
variable "Z" {
type = bool
}
job "xyz" {
type = "batch"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "group" {
task "task" {
driver = "raw_exec"
config {
command = "echo"
args = ["X ${var.X}, Y ${var.Y}, Z ${var.Z}"]
}
resources {
cpu = 10
memory = 16
}
}
}
}