Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,088 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi
I want to be able to access Blob storage using a SAS key in PowerShell. I have the SAS key set up on the storage account, limited to the IP of the server I'm running the PowerShell from. I want to be able to use the key without signing into Azure or using a Storage Account Key. Is this possible?
If I run
$SasToken = New-AzStorageContainerSASToken -Name "backup" -Permission "rad"
$Context = New-AzStorageContext -StorageAccountName "storage1" -SasToken $SasToken
I get