You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
Django/Jinja
16 lines
393 B
Django/Jinja
{% for database in databases %}
|
|
{
|
|
name: "{{ service_name }}-postgres-exporter-{{ database.name }}",
|
|
image_name: "wrouesnel/postgres_exporter",
|
|
image_version: "{{ postgres_exporter_version }}",
|
|
environment: [
|
|
'DATA_SOURCE_URI: "{{ database.uri }}"',
|
|
"{{ database.user }}",
|
|
"{{ database.pass }}",
|
|
],
|
|
networks: [
|
|
'"back-tier"',
|
|
'"front-tier"',
|
|
],
|
|
}
|
|
{% endfor %} |