Choose storage account settings, replication options, encryption behavior, and supporting tools for AZ-104 storage design questions.
AZ-104 treats storage-account design as an administrative decision with direct resilience and cost consequences. If you choose the wrong redundancy or account configuration, every later access or recovery decision gets harder.
Microsoft explicitly calls out creating and configuring storage accounts, configuring redundancy, configuring object replication, configuring storage-account encryption, and managing data with Azure Storage Explorer and AzCopy. That means you need both design awareness and basic operational tooling awareness.
The first question is usually resilience: LRS, ZRS, GRS, GZRS, and read-access variants are not interchangeable. The second is performance and workload fit: standard versus premium, blob versus file needs, and whether the region and application pattern support the option you want. Encryption is another common exam angle. Understand when Microsoft-managed encryption is enough and when customer-managed control becomes part of the design conversation.
Replication is not backup. Object replication is not the same thing as a restore strategy. Another common miss is choosing a higher-end redundancy option because it sounds safer even when the scenario does not justify the cost or cross-region behavior.
| Requirement | Strongest first fit | Why |
|---|---|---|
| Lowest cost and one-datacenter durability only | LRS | Keeps data in one datacenter |
| Survive a zone failure inside one region | ZRS | Spreads copies across zones |
| Keep an asynchronous paired-region copy | GRS | Adds cross-region replication |
| Need both zone resilience and paired-region replication | GZRS | Combines zone and region protection |
| Need to read from the secondary copy | RA-GRS or RA-GZRS | Adds read access to the secondary endpoint |
Next, move to Storage Access, Private Connectivity, and Data Protection so the account-design decisions connect to real access patterns.