All Azure services

Azure · Storage

Azure Blob Storage

Massive object storage with lifecycle tiers.

Official docs

Overview

Blob Storage stores unstructured data across Hot, Cool, Cold and Archive tiers with immutability policies and SAS-based access.

When to use it

  • Test reports, screenshots, recordings
  • Static site hosting
  • QA data-lake landing zone

Setup

  1. Create storage account (StorageV2, RA-GRS for DR).
  2. Create container with private access.
  3. Define lifecycle rule to tier old blobs to Cool/Archive.

How to use

Upload report
az storage blob upload-batch -d reports/$(date +%F) -s playwright-report --account-name qareports
Generate SAS
az storage blob generate-sas --account-name qareports -c reports -n run-123/index.html --permissions r --expiry 2026-01-01

QA use cases

  • Persist per-build HTML reports, lifecycle to Cool after 30 days.
  • Store baseline images for visual regression.