17 lines
278 B
HCL
17 lines
278 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
job "example" {
|
|
datacenters = ["dc1"]
|
|
type = "batch"
|
|
|
|
group "example" {
|
|
task "hello-world" {
|
|
driver = "hello-world-example"
|
|
|
|
config {
|
|
greeting = "hello"
|
|
}
|
|
}
|
|
}
|
|
}
|