Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Prepare Azure environments for new workloads—subscriptions, networking, identity, and landing zones
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/storage/README.md
1# Azure Storage23Scalable cloud storage for blobs, files, queues, and tables.45## When to Use67- Blob storage (files, images, videos)8- File shares (SMB/NFS)9- Queue storage (simple messaging)10- Table storage (NoSQL key-value)11- Static website hosting1213## Required Supporting Resources1415| Resource | Purpose |16|----------|---------|17| None required | Storage is self-contained |18| Key Vault | Store connection strings |19| Private Endpoint | Secure access (optional) |2021## SKU Selection2223| SKU | Replication | Use Case |24|-----|-------------|----------|25| Standard_LRS | Local (3 copies) | Dev/test, non-critical |26| Standard_ZRS | Zone-redundant | Production, regional HA |27| Standard_GRS | Geo-redundant | DR requirements |28| Premium_LRS | Premium SSD | High performance |2930## Storage Types3132| Type | Best For |33|------|----------|34| Blob | Files, images, videos, backups, logs |35| Queue | Simple message queuing, decoupling |36| Table | NoSQL key-value data |37| File Share | Lift-and-shift, SMB/NFS access |3839## Access Tiers4041| Tier | Use Case |42|------|----------|43| Hot | Frequent access |44| Cool | Infrequent access (30+ days) |45| Archive | Rare access (180+ days) |4647## Environment Variables4849| Variable | Value |50|----------|-------|51| `AZURE_STORAGE_CONNECTION_STRING` | Connection string (Key Vault) |52| `AZURE_STORAGE_ACCOUNT` | Account name |53| `AZURE_STORAGE_CONTAINER` | Container name |5455## References5657- [Bicep Patterns](bicep.md)58- [Access Patterns](access.md)59