Files
nomad/command/agent/testdata/template.hcl
Juliano Martinez 4a74fda8ce Allow client template config block to be parsed when using json config (#24007)
- Adds tests
- Adds sample test data for parsing hcl and json
- Adds changelog
2024-10-01 15:44:36 -04:00

38 lines
581 B
HCL

client {
template {
function_denylist = ["plugin"]
disable_file_sandbox = true
max_stale = "7600h"
wait {
min = "10s"
max = "10m"
}
wait_bounds {
min = "1s"
max = "10h"
}
block_query_wait = "10m"
consul_retry {
attempts = 6
backoff = "550ms"
max_backoff = "10m"
}
vault_retry {
attempts = 6
backoff = "550ms"
max_backoff = "10m"
}
nomad_retry {
attempts = 6
backoff = "550ms"
max_backoff = "10m"
}
}
}