Update to 2024-07-02 01:00

This commit is contained in:
Daniel Berteaud 2024-07-02 01:00:41 +02:00
parent d4f8857fa8
commit b38fe8ecec

View File

@ -29,6 +29,20 @@ auto_auth {
mode = 0600
}
}
{% for sink in vault_agent_sinks %}
sink {
type = "file"
{% if sink.wrap_ttl is defined %}
wrap_ttl = "{{ sink.wrap_ttl }}"
{% endif %}
config {
path = "{{ sink.path }}"
{% if sink.mode is defined %}
mode = {{ sink.mode }}
{% endif %}
}
}
{% endfor %}
}
{% for template in vault_agent_templates %}
@ -50,7 +64,7 @@ template {
{% if template.exec.timeout is defined %}
timeout = "{{ template.exec.timeout }}"
{% endif %}
command = "template.exec.command"
command = "{{ template.exec.command }}"
}
{% endif %}
}