From f7e8bc87a177f65c99fef819927e87787fe9e166 Mon Sep 17 00:00:00 2001 From: Vitaliy Kukharik Date: Sun, 26 Nov 2023 23:26:03 +0300 Subject: [PATCH] Update auto_conf.yml --- roles/pgbackrest/tasks/auto_conf.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/pgbackrest/tasks/auto_conf.yml b/roles/pgbackrest/tasks/auto_conf.yml index 6c00d0f87..e0ab291b0 100644 --- a/roles/pgbackrest/tasks/auto_conf.yml +++ b/roles/pgbackrest/tasks/auto_conf.yml @@ -3,12 +3,11 @@ # AWS S3 bucket - name: "Set variable 'pgbackrest_conf' for backup in the AWS S3 bucket" ansible.builtin.set_fact: - pgbackrest_repo_type: "s3" pgbackrest_conf: global: - { option: "log-level-file", value: "detail" } - { option: "log-path", value: "/var/log/pgbackrest" } - - { option: "repo1-type", value: "{{ pgbackrest_repo_type }}" } + - { option: "repo1-type", value: "s3" } - { option: "repo1-path", value: "{{ PGBACKREST_REPO_PATH | default('/pgbackrest') }}" } - { option: "repo1-s3-key", value: "{{ PGBACKREST_S3_KEY | default('') }}" } - { option: "repo1-s3-key-secret", value: "{{ PGBACKREST_S3_KEY_SECRET | default('') }}" }