Files
nomad/e2e/vaultcompat/input/cat.hcl
2023-08-10 17:27:29 -05:00

26 lines
395 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
job "cat" {
type = "batch"
group "testcase" {
task "cat" {
driver = "raw_exec"
config {
command = "cat"
args = ["${NOMAD_SECRETS_DIR}/vault_token"]
}
vault {
policies = ["default"]
}
}
restart {
attempts = 0
mode = "fail"
}
}
}