From 75ad299fb7ec00ce1039c2b117cdee7f61837260 Mon Sep 17 00:00:00 2001 From: alt Date: Sun, 24 May 2020 15:13:26 +0200 Subject: [PATCH] Export S3 vars --- templates/restic_access_Linux.j2 | 6 +++--- templates/restic_script_Linux.j2 | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/restic_access_Linux.j2 b/templates/restic_access_Linux.j2 index 9195dc7..8c52cdc 100644 --- a/templates/restic_access_Linux.j2 +++ b/templates/restic_access_Linux.j2 @@ -6,13 +6,13 @@ export RESTIC_REPOSITORY={{ restic_repos[item.repo].location }} export RESTIC_PASSWORD={{ restic_repos[item.repo].password }} {% if restic_repos[item.repo].aws_access_key is defined %} -AWS_ACCESS_KEY_ID={{ restic_repos[item.repo].aws_access_key }} +export AWS_ACCESS_KEY_ID={{ restic_repos[item.repo].aws_access_key }} {% endif %} {% if restic_repos[item.repo].aws_secret_access_key is defined %} -AWS_SECRET_ACCESS_KEY={{ restic_repos[item.repo].aws_secret_access_key }} +export AWS_SECRET_ACCESS_KEY={{ restic_repos[item.repo].aws_secret_access_key }} {% endif %} {% if restic_repos[item.repo].aws_default_region is defined %} -AWS_DEFAULT_REGION={{ restic_repos[item.repo].aws_default_region }} +export AWS_DEFAULT_REGION={{ restic_repos[item.repo].aws_default_region }} {% endif %} BACKUP_NAME={{ item.name }} {% if item.src is defined %} diff --git a/templates/restic_script_Linux.j2 b/templates/restic_script_Linux.j2 index 327f12c..8374200 100644 --- a/templates/restic_script_Linux.j2 +++ b/templates/restic_script_Linux.j2 @@ -7,13 +7,13 @@ export RESTIC_REPOSITORY={{ restic_repos[item.repo].location }} export RESTIC_PASSWORD={{ restic_repos[item.repo].password }} BACKUP_NAME={{ item.name }} {% if restic_repos[item.repo].aws_access_key is defined %} -AWS_ACCESS_KEY_ID={{ restic_repos[item.repo].aws_access_key }} +export AWS_ACCESS_KEY_ID={{ restic_repos[item.repo].aws_access_key }} {% endif %} {% if restic_repos[item.repo].aws_secret_access_key is defined %} -AWS_SECRET_ACCESS_KEY={{ restic_repos[item.repo].aws_secret_access_key }} +export AWS_SECRET_ACCESS_KEY={{ restic_repos[item.repo].aws_secret_access_key }} {% endif %} {% if restic_repos[item.repo].aws_default_region is defined %} -AWS_DEFAULT_REGION={{ restic_repos[item.repo].aws_default_region }} +export AWS_DEFAULT_REGION={{ restic_repos[item.repo].aws_default_region }} {% endif %} {% if item.src is defined %} BACKUP_SOURCE={{ item.src }}