Wasabi Cloud Storage

Wasabi Cloud Storage is a performant, cost-effective alternative to the major cloud providers. Arraylake works great with Wasabi Cloud Storage via the S3-compatible API. You can use Wasabi Cloud Storage as the storage location for your organization..
To use Wasabi Cloud Storage with Arraylake:
- 
Create a new object storage bucket (Wasabi docs). For example, the bucket could be named
my-arraylake-bucket. Your bucket will be located in a specific Wasabi region. You need to know the region name for the next step (e.g.us-east-1). - 
Create a new
BucketConfigto store the configuration for this bucket using either the Arraylake Python client or web app: 
- Web App
 - Python
 

Add a new Open Wasabi
from arraylake import Client
client = Client()
client.create_bucket_config(
  org="earthmover",
  nickname="my-wasabi-bucket",
  uri="s3://my-arraylake-bucket",
  extra_config={'endpoint_url': 'https://s3.us-east-1.wasabisys.com'}
)
That's it! You're ready to create a Repository! 🎉