b2b25be0ce
* agent/template: add default_lease_duration config * go mod tidy * Add changelog * Fix panic * Add documentation * Change to static_secret_render_interval * Update doc * Update command/agent/template/template.go Co-authored-by: Theron Voran <tvoran@users.noreply.github.com> * Update changelog/11934.txt Co-authored-by: Theron Voran <tvoran@users.noreply.github.com> * Update website/content/docs/agent/template-config.mdx Co-authored-by: Theron Voran <tvoran@users.noreply.github.com> Co-authored-by: Theron Voran <tvoran@users.noreply.github.com>
17 lines
296 B
HCL
17 lines
296 B
HCL
vault {
|
|
address = "http://127.0.0.1:1111"
|
|
retry {
|
|
num_retries = 5
|
|
}
|
|
}
|
|
|
|
template_config {
|
|
exit_on_retry_failure = true
|
|
static_secret_render_interval = 60
|
|
}
|
|
|
|
template {
|
|
source = "/path/on/disk/to/template.ctmpl"
|
|
destination = "/path/on/disk/where/template/will/render.txt"
|
|
}
|