- matrix_postgres_backup_databases now uses more simple structure

This commit is contained in:
foxcris
2021-04-05 09:05:41 +02:00
parent 76fbc59b61
commit 2178f3612f
3 changed files with 6 additions and 9 deletions

View File

@ -2,7 +2,7 @@
POSTGRES_USER={{ matrix_postgres_backup_connection_username }}
POSTGRES_PASSWORD={{ matrix_postgres_backup_connection_password }}
POSTGRES_HOST={{ matrix_postgres_backup_connection_hostname }}
POSTGRES_DB={{ matrix_postgres_backup_databases|map(attribute='name')|join(', ') }}
POSTGRES_DB={{ matrix_postgres_backup_databases|join(', ') }}
POSTGRES_EXTRA_OPTS={{ matrix_postgres_backup_extra_opts }}
SCHEDULE={{ matrix_postgres_backup_schedule }}
BACKUP_KEEP_DAYS={{ matrix_postgres_backup_keep_days }}