049301f70b
* feat(agent): add retry configuration for vault agent * feat(agent): add test fixtures for retry * fix(retry): move retry stanza to top level as template_retry * fix(retry): add retry config to ServerConfig struct * fix(retry): point config parser to parse template_retry instead of retry * remove netlify config (#10711) * Fix build (#10749) * Move the declaration to a OSS build tag file to not have it collide w… (#10750) * Move the declaration to a OSS build tag file to not have it collide with ent declarations * Add comment * Remove comment to trigger ci * Unconditionally use the root namespace when calling sys/seal-status. (#10742) * feat(agent): add retry configuration for vault agent * feat(agent): add test fixtures for retry * fix(retry): move retry stanza to top level as template_retry * fix(retry): add retry config to ServerConfig struct * fix(retry): point config parser to parse template_retry instead of retry Co-authored-by: Hridoy Roy <roy@hashicorp.com> Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com> Co-authored-by: Vishal Nayak <vishalnayak@users.noreply.github.com> Co-authored-by: Mark Gritter <mgritter@hashicorp.com>
29 lines
382 B
HCL
29 lines
382 B
HCL
pid_file = "./pidfile"
|
|
|
|
auto_auth {
|
|
method {
|
|
type = "aws"
|
|
namespace = "my-namespace/"
|
|
|
|
config = {
|
|
role = "foobar"
|
|
}
|
|
}
|
|
|
|
sink {
|
|
type = "file"
|
|
config = {
|
|
path = "/tmp/file-foo"
|
|
}
|
|
aad = "foobar"
|
|
dh_type = "curve25519"
|
|
dh_path = "/tmp/file-foo-dhpath"
|
|
}
|
|
}
|
|
|
|
vault {
|
|
address = "http://127.0.0.1:1111"
|
|
}
|
|
|
|
template_retry {}
|