2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-27 15:26:37 +00:00
restic/changelog/0.17.0_2024-07-26/issue-4707

15 lines
646 B
Plaintext
Raw Normal View History

2024-07-22 22:19:22 +00:00
Change: Disable S3 anonymous authentication by default
2024-07-22 22:19:22 +00:00
When using the S3 backend with anonymous authentication, it continuously
tried to retrieve new authentication credentials, causing bad performance.
2024-07-22 22:19:22 +00:00
Now, to use anonymous authentication, it is necessary to pass the extended
option `-o s3.unsafe-anonymous-auth=true` to restic.
2024-07-22 22:19:22 +00:00
It is possible to temporarily revert to the old behavior by setting the
environment variable `RESTIC_FEATURES=explicit-s3-anonymous-auth=false`. Note
that this feature flag will be removed in the next minor restic version.
https://github.com/restic/restic/issues/4707
https://github.com/restic/restic/pull/4908