Azure Storage Setup
2 min read
This guide walks you through setting up an Azure Blob Storage account and generating a SAS URL that you will need when deploying the Chipmunk appliance.
Overview
Chipmunk stores all archived OneDrive, Exchange, and Teams data in your Azure Blob Storage account. You must create a storage account, a container, and generate a SAS URL with the correct permissions.
You’ll enter this SAS URL during the Chipmunk appliance setup process.
Step 1: Create a Storage Account
- Log into Azure Portal
- Search for Storage accounts
- Click + Create
- Fill out:
- Subscription: Your Azure subscription
- Resource group: Create or select one
- Storage account name: e.g.,
chipmunkarchive - Region: Choose the same region as your Microsoft 365 tenant if possible
- Performance: Standard
- Redundancy: LRS or your preferred redundancy option
- Click Review + create, then Create
Step 2: Create a Blob Container
- In the Storage Account, go to Containers
- Click + Container
- Name it something like
chipmunkarchive - Set Public access level to Private (no anonymous access)
- Click Create
Step 3: Generate a SAS URL
- In the Storage Account, click Shared access signature
- Select the following permissions:
- Read (r)
- Add (a)
- Create (c)
- Write (w)
- Delete (d)
- List (l)
- Set:
- Start time: Now (or backdated by 15 minutes to avoid clock drift issues)
- Expiry time: Several years in the future (e.g., 2030)
- Select:
- Allowed services: Blob
- Allowed resource types: Container, Object
- Protocol: HTTPS only (recommended)
- Click Generate SAS token and URL
- Copy the full Blob service SAS URL
It should look like this:
https:
Step 4: Save the SAS URL
You will need to paste this URL into the Chipmunk setup wizard after you deploy the appliance. We recommend storing it somewhere secure until then.
Do not modify the config.json manually — Chipmunk’s setup process will populate it for you.
Tips
- Ensure the SAS token is long-lived (multi-year) to avoid service interruptions.
- Do not use storage account keys — only use the generated SAS URL.
- The container name and URL must match exactly.