Your company is launching a public website that allows users to stream videos. You upload multiple video files to an Azure storage container.You need to give anonymous users read access to all of the video files in the storage container. What should you do?You can enable anonymous, public read access to a container and its blobs in Azure Blob storage. By doing so, you can grant read-only access to these resources without sharing your account key, and without requiring a shared access signature (SAS).To set permissions to public read access for blobs only, set the PublicAccess property to BlobContainerPublicAccessType.Blob.References: https://docs.microsoft.com/en-us/azure/storage/storage-manage-access-to-resources
Question:
What should you do?
Options:
Edit each blob’s metadata and set the access policy to Public Blob.
Edit the container metadata and set the access policy to Public Container.
Move the files into a container sub-directory and set the directory access level to Public Blob.
Edit the container metadata and set the access policy to Public Blob.
Correct Answer
The Correct Answer for this Question is
Edit the container metadata and set the access policy to Public Blob.