A utility company is designing a secure storage solution for smart grid telemetry data stored in Azure Blob Storage. The solution must meet the following requirements:
- Support temporary, read-only access to specific blob containers for external auditors. This access must automatically expire after hours and must be capable of being revoked immediately if a security compromise is suspected.
- Restrict network access to only allow traffic from the company's on-premises office IP range () and a dedicated Azure Virtual Network (VNet).
- Minimize administrative effort and adhere to the principle of least privilege.
Which two configurations should you include in the design?
- Create a stored access policy on the blob containers, and generate service shared access signatures (SAS) associated with the policy.Cevap
- Configure the storage account firewall to permit access from the IP range and enable a private endpoint connected to the VNet.Cevap
- CGenerate ad-hoc user delegation SAS tokens with an -hour expiration time for each auditor.
- DAssign the Storage Blob Data Reader role directly to each auditor's individual Microsoft Entra ID user account.
- EAssign the Storage Blob Data Reader role to a Microsoft Entra ID security group, and configure Privileged Identity Management (PIM) to make the group membership permanently active.
Cevap
Create a stored access policy on the blob containers and generate service shared access signatures (SAS) associated with the policy, and configure the storage account firewall to permit access from the IP range and enable a private endpoint connected to the VNet.
Using a stored access policy associated with service SAS tokens ensures that access can be revoked immediately by altering or removing the policy. Restricting the storage firewall to the specified IP address range and using a private endpoint within the VNet properly isolates network access to only authorized sources.
Adım Adım Çözüm
Anahtar Kavram
Securing Azure Storage access using stored access policies for revocable SAS tokens and network firewalls with private endpoints.