title: Use a Windows VM system-assigned managed identity to access Azure Storage using a SAS credential description: A tutorial that shows you how to use a Windows VM system-assigned managed identity to access Azure Storage, using a SAS credential instead of a storage account access key. services: active-directory documentationcenter: '' author: daveba manager: mtillman editor: daveba
ms.service: active-directory ms.component: msi ms.devlang: na ms.topic: article ms.tgt_pltfrm: na ms.workload: identity ms.date: 11/20/2017 ms.author: daveba
Tutorial: Use a Windows VM system-assigned managed identity to access Azure Storage via a SAS credential
[!INCLUDE preview-notice]
This tutorial shows you how to use a system-assigned identity for a Windows virtual machine (VM) to obtain a storage Shared Access Signature (SAS) credential. Specifically, a Service SAS credential.
A Service SAS provides the ability to grant limited access to objects in a storage account, for limited time and a specific service (in our case, the blob service), without exposing an account access key. You can use a SAS credential as usual when doing storage operations, for example when using the Storage SDK. For this tutorial, we demonstrate uploading and downloading a blob using Azure Storage PowerShell. You will learn how to:
[!div class="checklist"]
- Create a storage account
- Grant your VM access to a storage account SAS in Resource Manager
- Get an access token using your VM's identity, and use it to retrieve the SAS from Resource Manager
[!INCLUDE msi-tut-prereqs]
If you don't already have one, you will now create a storage account. You can also skip this step and grant your VM's system-assigned managed identity access to the SAS credential of an existing storage account.
-
Click the +/Create new service button found on the upper left-hand corner of the Azure portal.
-
Click Storage, then Storage Account, and a new "Create storage account" panel will display.
-
Enter a name for the storage account, which you will use later.
-
Deployment model and Account kind should be set to "Resource manager" and "General purpose", respectively.
-
Ensure the Subscription and Resource Group match the ones you specified when you created your VM in the previous step.
-
Click Create.
Later we will upload and download a file to the new storage account. Because files require blob storage, we need to create a blob container in which to store the file.
-
Navigate back to your newly created storage account.
-
Click the Containers link in the left panel, under "Blob service."
-
Click + Container on the top of the page, and a "New container" panel slides out.
-
Give the container a name, select an access level, then click OK. The name you specified will be used later in the tutorial.
Azure Storage does not natively support Azure AD authentication. However, you can use a managed identity to retrieve a storage SAS from Resource Manager, then use the SAS to access storage. In this step, you grant your VM's system-assigned managed identity access to your storage account SAS.
-
Navigate back to your newly created storage account.
-
Click the Access control (IAM) link in the left panel.
-
Click + Add role assignment on top of the page to add a new role assignment for your VM
-
Set Role to "Storage Account Contributor", on the right side of the page.
-
In the next dropdown, set Assign access to the resource "Virtual Machine".
-
Next, ensure the proper subscription is listed in Subscription dropdown, then set Resource Group to "All resource groups".
-
Finally, under Select choose your Windows Virtual Machine in the dropdown, then click Save.
For the remainder of the tutorial, we will work from the VM we created earlier.
You will need to use the Azure Resource Manager PowerShell cmdlets in this portion. If you don’t have it installed, download the latest version before continuing.
-
In the Azure portal, navigate to Virtual Machines, go to your Windows virtual machine, then from the Overview page click Connect at the top.
-
Enter in your Username and Password for which you added when you created the Windows VM.
-
Now that you have created a Remote Desktop Connection with the virtual machine, open PowerShell in the remote session.
-
Using Powershell’s Invoke-WebRequest, make a request to the local managed identity for Azure resources endpoint to get an access token for Azure Resource Manager.
$response = Invoke-WebRequest -Uri 'http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https%3A%2F%2Fmanagement.azure.com%2F' -Method GET -Headers @{Metadata="true"}
[!NOTE] The value of the "resource" parameter must be an exact match for what is expected by Azure AD. When using the Azure Resource Manager resource ID, you must include the trailing slash on the URI.
Next, extract the "Content" element, which is stored as a JavaScript Object Notation (JSON) formatted string in the $response object.
$content = $response.Content | ConvertFrom-Json
Next, extract the access token from the response.
$ArmToken = $content.access_token
Now use PowerShell to call Resource Manager using the access token we retrieved in the previous section, to create a storage SAS credential. Once we have the SAS credential, we can call storage operations.
For this request we'll use the follow HTTP request parameters to create the SAS credential:
{
"canonicalizedResource":"/blob/<STORAGE ACCOUNT NAME>/<CONTAINER NAME>",
"signedResource":"c", // The kind of resource accessible with the SAS, in this case a container (c).
"signedPermission":"rcw", // Permissions for this SAS, in this case (r)ead, (c)reate, and (w)rite. Order is important.
"signedProtocol":"https", // Require the SAS be used on https protocol.
"signedExpiry":"<EXPIRATION TIME>" // UTC expiration time for SAS in ISO 8601 format, for example 2017-09-22T00:06:00Z.
}
These parameters are included in the POST body of the request for the SAS credential. For more information on the parameters for creating a SAS credential, see the List Service SAS REST reference.
First, convert the parameters to JSON, then call the storage listServiceSas
endpoint to create the SAS credential:
$params = @{canonicalizedResource="/blob/<STORAGE-ACCOUNT-NAME>/<CONTAINER-NAME>";signedResource="c";signedPermission="rcw";signedProtocol="https";signedExpiry="2017-09-23T00:00:00Z"}
$jsonParams = $params | ConvertTo-Json
$sasResponse = Invoke-WebRequest -Uri https://management.azure.com/subscriptions/<SUBSCRIPTION-ID>/resourceGroups/<RESOURCE-GROUP>/providers/Microsoft.Storage/storageAccounts/<STORAGE-ACCOUNT-NAME>/listServiceSas/?api-version=2017-06-01 -Method POST -Body $jsonParams -Headers @{Authorization="Bearer $ArmToken"}
Note
The URL is case-sensitive, so ensure you use the exact same case used earlier, when you named the Resource Group, including the uppercase "G" in "resourceGroups."
Now we can extract the SAS credential from the response:
$sasContent = $sasResponse.Content | ConvertFrom-Json
$sasCred = $sasContent.serviceSasToken
If you inspect the SAS cred you'll see something like this:
PS C:\> $sasCred
sv=2015-04-05&sr=c&spr=https&se=2017-09-23T00%3A00%3A00Z&sp=rcw&sig=JVhIWG48nmxqhTIuN0uiFBppdzhwHdehdYan1W%2F4O0E%3D
Next we create a file called "test.txt". Then use the SAS credential to authenticate with the New-AzureStorageContent
cmdlet, upload the file to our blob container, then download the file.
echo "This is a test text file." > test.txt
Be sure to install the Azure Storage cmdlets first, using Install-Module Azure.Storage
. Then upload the blob you just created, using the Set-AzureStorageBlobContent
PowerShell cmdlet:
$ctx = New-AzureStorageContext -StorageAccountName <STORAGE-ACCOUNT-NAME> -SasToken $sasCred
Set-AzureStorageBlobContent -File test.txt -Container <CONTAINER-NAME> -Blob testblob -Context $ctx
Response:
ICloudBlob : Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob
BlobType : BlockBlob
Length : 56
ContentType : application/octet-stream
LastModified : 9/21/2017 6:14:25 PM +00:00
SnapshotTime :
ContinuationToken :
Context : Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext
Name : testblob
You can also download the blob you just uploaded, using the Get-AzureStorageBlobContent
PowerShell cmdlet:
Get-AzureStorageBlobContent -Blob testblob -Container <CONTAINER-NAME> -Destination test2.txt -Context $ctx
Response:
ICloudBlob : Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob
BlobType : BlockBlob
Length : 56
ContentType : application/octet-stream
LastModified : 9/21/2017 6:14:25 PM +00:00
SnapshotTime :
ContinuationToken :
Context : Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext
Name : testblob
In this tutorial, you learned how to use a Windows VM's system-assigned managed identity to access Azure Storage using a SAS credential. To learn more about Azure Storage SAS see:
[!div class="nextstepaction"] Using shared access signatures (SAS)