A gaming company is designing a secure storage solution to share log files stored in an Azure Blob Storage container named `gamelogs` with an external game analytics agency. The agency requires access to the container for 30 days from a specific public IP range. You must ensure that access can be revoked immediately if a security breach occurs. Additionally, a group of internal security administrators must be able to temporarily elevate their permissions to manage the storage account settings when an incident is reported, but they must not hold these privileges permanently. Which two actions should you include in the storage security design? (Select two.)
- Create a stored access policy on the container, and then generate a Shared Access Signature (SAS) token linked to this policy.Answer
- Configure Microsoft Entra Privileged Identity Management (PIM) to make the security administrators eligible for the Storage Account Contributor role.Answer
- CGenerate an ad-hoc container-level Shared Access Signature (SAS) token with a 30-day validity period and apply the IP firewall rules directly to the token.
- DConfigure Microsoft Entra Privileged Identity Management (PIM) to assign the security administrators as permanently active in the Storage Account Contributor role.
- EDirectly assign the Storage Blob Data Reader role to each external vendor analyst's Microsoft Entra guest account.
Answer
The correct actions are: creating a stored access policy on the container to generate a SAS token, and configuring Microsoft Entra Privileged Identity Management (PIM) to make security administrators eligible for the Storage Account Contributor role.
The correct approach uses a stored access policy on the blob container to generate the SAS token, allowing for instant revocation if needed by modifying or deleting the policy. It also uses Microsoft Entra Privileged Identity Management (PIM) to configure eligible role assignments for the security administrators, which ensures they only receive elevated permissions (just-in-time) after requesting activation.
Step-by-Step Solution
Key Concept
Designing data storage security and access control using stored access policies and just-in-time identity management.