1
0
mirror of https://github.com/restic/restic.git synced 2024-06-28 08:00:52 +02:00
restic/changelog/0.14.0_2022-08-25/issue-2295

15 lines
590 B
Plaintext
Raw Normal View History

2022-03-05 19:16:13 +01:00
Enhancement: Allow use of SAS token to authenticate to Azure
Previously restic only supported AccountKeys to authenticate to Azure
storage accounts, which necessitates giving a significant amount of
access.
We added support for Azure SAS tokens which are a more fine-grained
and time-limited manner of granting access. Set the `AZURE_ACCOUNT_NAME`
and `AZURE_ACCOUNT_SAS` environment variables to use a SAS token for
authentication. Note that if `AZURE_ACCOUNT_KEY` is set, it will take
2022-08-24 01:21:01 +02:00
precedence.
2022-03-05 19:16:13 +01:00
https://github.com/restic/restic/issues/2295
https://github.com/restic/restic/pull/3661