Complete the code to set the storage account redundancy to locally-redundant storage (LRS).
storage_account = StorageAccount(redundancy=[1])LRS keeps three copies of your data within a single data center for high durability.
Complete the code to configure zone-redundant storage (ZRS) for higher availability.
storage_account = StorageAccount(redundancy=[1])ZRS replicates data synchronously across multiple availability zones in the same region.
Fix the error in the code to enable geo-redundant storage (GRS).
storage_account = StorageAccount(redundancy=[1])GRS replicates data asynchronously to a secondary region for disaster recovery.
Fill both blanks to create a storage account with read-access geo-redundant storage (RA-GRS).
storage_account = StorageAccount(redundancy=[1], access_tier=[2])
RA-GRS allows read access to the secondary region. Hot access tier is for frequently accessed data.
Fill all three blanks to define a storage account with zone-redundant storage and cool access tier.
storage_account = StorageAccount(redundancy=[1], access_tier=[2], enable_https_traffic_only=[3])
ZRS replicates across zones, Cool tier is for infrequent access, and enabling HTTPS only secures traffic.