30 lines
1.2 KiB
Django/Jinja
30 lines
1.2 KiB
Django/Jinja
{% set vault_addr = 'https://vault.trez.wtf' %}
|
|
{% set secrets_path = 'rinoa-docker/env' %}
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
|
|
|
|
<properties>
|
|
|
|
<entry key='config.default'>./conf/default.xml</entry>
|
|
|
|
<!--
|
|
|
|
This is the main configuration file. All your configuration parameters should be placed in this file.
|
|
|
|
Default configuration parameters are located in the "default.xml" file. You should not modify it to avoid issues
|
|
with upgrading to a new version. Parameters in the main config file override values in the default file. Do not
|
|
remove "config.default" parameter from this file unless you know what you are doing.
|
|
|
|
For list of available parameters see following page: https://www.traccar.org/configuration-file/
|
|
|
|
-->
|
|
|
|
<entry key='database.driver'>org.postgresql.Driver</entry>
|
|
<entry key='database.url'>jdbc:postgresql://traccar-pg:5432/traccar-db</entry>
|
|
<entry key='database.user'>traccar</entry>
|
|
<entry key='database.password'>{{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['WAZUH_API_PASSWORD'] }}</entry>
|
|
|
|
</properties>
|