User Tools

Site Tools


software:chipmunk:setup:storage_account

Azure Storage Setup

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

1. Log into Azure Portal 2. Search for Storage accounts 3. Click + Create 4. 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

5. Click Review + create, then Create

Step 2: Create a Blob Container

1. In the Storage Account, go to Containers 2. Click + Container 3. Name it something like chipmunkarchive 4. Set Public access level to Private (no anonymous access) 5. Click Create

Step 3: Generate a SAS URL

1. In the Storage Account, click Shared access signature 2. Select the following permissions:

  • Read ®
  • Add (a)
  • Create ©
  • Write (w)
  • Delete (d)
  • List (l)

3. Set:

  • Start time: Now (or backdated by 15 minutes to avoid clock drift issues)
  • Expiry time: Several years in the future (e.g., 2030)

4. Select:

  • Allowed services: *Blob*
  • Allowed resource types: *Container*, *Object*
  • Protocol: HTTPS only (recommended)

5. Click Generate SAS token and URL 6. Copy the full Blob service SAS URL

It should look like this:

https:<youraccount>.blob.core.windows.net/<container>?sp=racwdl&st=2025-05-14T02:01:06Z&se=2030-05-14T10:01:06Z&spr=https&sv=2024-11-04&sr=c&sig=<signature> ===== 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. —– Next: Set up your DNS and TLS certificate chipmunk azure blob storage sas setup

software/chipmunk/setup/storage_account.txt · Last modified: 2025/07/01 11:34 by support@smikar.com