> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mirage.strukto.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Wasabi

> Set up Wasabi credentials for the Wasabi resource.

## Credentials

### 1. Create an access key

1. Sign in to the [Wasabi console](https://console.wasabisys.com/)
2. Go to **Access Keys** -> **Create New Access Key**
3. Copy the **Access Key** and **Secret Key**
4. Note your bucket's **region** (e.g. `us-east-2`) and **bucket** name

The endpoint is derived from `region` as `s3.<region>.wasabisys.com`
(`s3.wasabisys.com` for `us-east-1`).

### 2. Set environment variables

```bash theme={null}
# .env.development
WASABI_BUCKET=my-bucket
WASABI_REGION=us-east-2
WASABI_ACCESS_KEY_ID=...
WASABI_SECRET_ACCESS_KEY=...
```

For Python configuration, see the [Wasabi resource](/python/resource/wasabi) docs.
