mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-12-12 12:50:18 +01:00
Update restic_access_Linux.j2
This commit is contained in:
parent
506dbed1c0
commit
83d6f50cc4
1 changed files with 2 additions and 2 deletions
|
@ -4,12 +4,12 @@
|
||||||
# Source this file to work with restic on this host
|
# Source this file to work with restic on this host
|
||||||
|
|
||||||
export RESTIC_REPOSITORY={{ restic_repos[item.repo].location }}
|
export RESTIC_REPOSITORY={{ restic_repos[item.repo].location }}
|
||||||
export RESTIC_PASSWORD={{ restic_repos[item.repo].password }}
|
export RESTIC_PASSWORD="{{ restic_repos[item.repo].password | regex_escape() }}"
|
||||||
{% if restic_repos[item.repo].aws_access_key is defined %}
|
{% if restic_repos[item.repo].aws_access_key is defined %}
|
||||||
export AWS_ACCESS_KEY_ID={{ restic_repos[item.repo].aws_access_key }}
|
export AWS_ACCESS_KEY_ID={{ restic_repos[item.repo].aws_access_key }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if restic_repos[item.repo].aws_secret_access_key is defined %}
|
{% if restic_repos[item.repo].aws_secret_access_key is defined %}
|
||||||
export 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 | regex_escape() }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if restic_repos[item.repo].aws_default_region is defined %}
|
{% if restic_repos[item.repo].aws_default_region is defined %}
|
||||||
export AWS_DEFAULT_REGION={{ restic_repos[item.repo].aws_default_region }}
|
export AWS_DEFAULT_REGION={{ restic_repos[item.repo].aws_default_region }}
|
||||||
|
|
Loading…
Reference in a new issue