From 3ca306d69a7ae428df9a85fbcc273418e85b75a6 Mon Sep 17 00:00:00 2001 From: Hugo Reeves Date: Fri, 26 Jul 2019 22:00:48 +1200 Subject: [PATCH] Doc Addition: Added Wasabi repo setup --- doc/030_preparing_a_new_repo.rst | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/doc/030_preparing_a_new_repo.rst b/doc/030_preparing_a_new_repo.rst index 327a23e76..1884dd1c5 100644 --- a/doc/030_preparing_a_new_repo.rst +++ b/doc/030_preparing_a_new_repo.rst @@ -234,7 +234,7 @@ credentials of your Minio Server. $ export AWS_ACCESS_KEY_ID= $ export AWS_SECRET_ACCESS_KEY= -Now you can easily initialize restic to use Minio server as backend with +Now you can easily initialize restic to use Minio server as a backend with this command. .. code-block:: console @@ -246,6 +246,35 @@ this command. Please note that knowledge of your password is required to access the repository. Losing your password means that your data is irrecoverably lost. +Wasabi +************ + +`Wasabi `__ is a low cost AWS S3 conformant object storage provider. +Due to it's S3 conformance, Wasabi can be used as a storage provider for a restic repository. + +- Create a Wasabi bucket using the `Wasabi Console `__. +- Determine the correct Wasabi service URL for your bucket `here __`. + +You must first setup the following environment variables with the +credentials of your Wasabi account. + +.. code-block:: console + + $ export AWS_ACCESS_KEY_ID= + $ export AWS_SECRET_ACCESS_KEY= + +Now you can easily initialize restic to use Wasabi as a backend with +this command. + +.. code-block:: console + + $ ./restic -r s3:https:/// init + enter password for new backend: + enter password again: + created restic backend xxxxxxxxxx at s3:https:/// + Please note that knowledge of your password is required to access + the repository. Losing your password means that your data is irrecoverably lost. + OpenStack Swift ***************