wal-g/defaults/main.yaml

54 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2024-04-23 09:48:58 +00:00
wal_g_version: "3.0.0"
wal_g_install_repo: true
2023-02-07 23:18:19 +00:00
2023-02-20 09:44:18 +00:00
wal_g_pg: false
2023-07-03 21:02:28 +00:00
wal_g_pg_binary_name: "wal-g-pg"
wal_g_pg_user: "postgres"
wal_g_pg_database: "postgres"
2023-02-20 09:44:18 +00:00
wal_g_restore: false
wal_g_config_name: ".walg.json"
wal_g_restore_config_name: ".walg-restore.json"
2023-02-07 23:18:19 +00:00
wal_g_pg_config_owner: "postgres"
wal_g_pg_config_group: "postgres"
wal_g_pg_backup_owner: "postgres"
wal_g_pg_backup_group: "postgres"
wal_g_pg_major_version: "15"
2023-02-07 23:18:19 +00:00
wal_g_backup_enable: true
2023-02-07 23:18:19 +00:00
wal_g_backup_schedule: ""
wal_g_backup_retention_schedule: ""
wal_g_backup_retention_number: 7
wal_g_backup_permanent_schedule: ""
2023-05-11 10:56:29 +00:00
# If backuping through proxy
#wal_g_http_proxy: ''
#wal_g_https_proxy: ''
wal_g_postgresql_supported_versions:
- 13
- 14
- 15
- 16
2023-02-07 23:18:19 +00:00
wal_g_default_config: # more options see https://github.com/wal-g/wal-g#configuration
# AWS_ACCESS_KEY_ID: "secret-key"
# AWS_SECRET_ACCESS_KEY: "access-key"
# AWS_ENDPOINT: "https://s3.example.com"
# WALG_S3_PREFIX: "s3://bucket"
# AWS_S3_FORCE_PATH_STYLE: "true"
WALG_COMPRESSION_METHOD: "brotli"
2023-02-20 09:44:18 +00:00
PGDATA: "{{ wal_g_pg_data_dir }}"
2023-02-07 23:18:19 +00:00
PGHOST: "/var/run/postgresql"
2023-07-03 21:02:28 +00:00
PGUSER: "{{ wal_g_pg_user }}"
PGDATABASE: "{{ wal_g_pg_database }}"
2023-02-07 23:18:19 +00:00
# WALG_LIBSODIUM_KEY: "d82560ddab2b096c56ea8c6573dfdf29de8cd6f2bb5e672d1d3b5a89749b8cbd"
WALG_LIBSODIUM_KEY_TRANSFORM: "hex"
2023-02-20 09:44:18 +00:00
wal_g_default_restore_config:
WALG_COMPRESSION_METHOD: "brotli"
PGDATA: "{{ wal_g_pg_data_dir }}"
PGHOST: "/var/run/postgresql"
2023-07-03 21:02:28 +00:00
PGUSER: "{{ wal_g_pg_user }}"
PGDATABASE: "{{ wal_g_pg_database }}"
2023-02-20 09:44:18 +00:00
WALG_LIBSODIUM_KEY_TRANSFORM: "hex"