Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Add support for s3 endpoints configuration #78

Merged
merged 1 commit into from
Mar 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions templates/config.j2
Original file line number Diff line number Diff line change
Expand Up @@ -497,4 +497,16 @@
</user_directories>
{% endif %}

{% if clickhouse_s3_endpoints is defined %}
<s3>
{% for s3_endpoint in clickhouse_s3_endpoints %}
<{{ s3_endpoint }}>
{% for key, value in clickhouse_s3_endpoints[s3_endpoint].items() %}
<{{ key }}>{{ value }}</{{ key }}>
{% endfor %}
</{{ s3_endpoint }}>
{% endfor %}
</s3>
{% endif %}

</yandex>