Search code examples
azureazure-blob-storageazure-storage-files

Access Key for a specific Blob / File Share


I would like to configure Access Key(s) for a specific Blob or File Share inside a storage account.
Until now I had only found via UI and Docs ability to set Access Keys global to the entire storage account.
Is there a way to do that?


Solution

  • You need to use Shared Access Signatures for that which is the string that defines the access, policies of access, expiration time, etc. There is no way to do that using Access Key or something like else on the blob level.

    SAS overview

    How to do that

    Highly recommend to review the Azure Storage security guidance.