An automotive engineering company is designing a secure storage solution on Azure for crash test simulation video files. The files will be stored in an Azure Blob Storage container. The design must meet the following requirements:
1. Internal simulation analysis engineers must have read access to the video files. Access permissions must be managed collectively to minimize administrative overhead, rather than at the individual user level.
2. Storage administrators must have administrative permissions to manage the storage resources. These permissions must be granted dynamically on-demand with a required approval workflow, rather than being permanently assigned.
3. An external safety auditing partner needs temporary read-only access to specific video files. This access must be easily revocable at any time and must expire automatically after 30 days. The duration of this access must be controlled from the server side rather than by the client.
Which of the following security controls should you include in the storage design to meet these requirements? (Select TWO.)
- Configure a Stored Access Policy on the blob container and generate a Shared Access Signature (SAS) token associated with this policy for the external safety auditing partner.Cevap
- Create a Microsoft Entra ID security group for the simulation analysis engineers, assign the Storage Blob Data Reader role to the group, and configure Microsoft Entra Privileged Identity Management (PIM) with eligible assignments for the storage administrator roles.Cevap
- CDirectly assign the Storage Blob Data Reader role to the user account of each simulation analysis engineer, and configure permanent active roles for the storage administrators.
- DGenerate an ad-hoc Shared Access Signature (SAS) token for the external safety auditing partner with a 30-day expiration defined directly in the token parameters without using a stored access policy.
- EConfigure Microsoft Entra Privileged Identity Management (PIM) with permanently active role assignments for the storage administrators to allow continuous access management.