title: Use a Windows VM system-assigned managed identity to access Azure Storage description: A tutorial that walks you through the process of using a Windows VM system-assigned managed identity to access Azure Storage. services: active-directory documentationcenter: '' author: daveba manager: mtillman editor: daveba
ms.service: active-directory ms.component: msi ms.devlang: na ms.topic: tutorial ms.tgt_pltfrm: na ms.workload: identity ms.date: 11/20/2017 ms.author: daveba
[!INCLUDE preview-notice]
This tutorial shows you how to use a system-assigned managed identity for Windows virtual machine (VM) to retrieve storage account access keys. You can use storage access keys as usual when doing storage operations, for example when using the Storage SDK. For this tutorial, we upload and download blobs using Azure Storage PowerShell. You will learn how to:
[!div class="checklist"]
- Create a storage account
- Grant your VM access to storage account access keys in Resource Manager
- Get an access token using your VM's identity, and use it to retrieve the storage access keys 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 keys 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, 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 your VM's system-assigned managed identity to retrieve storage account access keys from the Resource Manager, then use a key to access storage. In this step, you grant your VM's system-assigned managed identity access to the keys to your storage account.
-
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 Key Operator Service Role", 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 retrieve the storage access key. Once we have the storage access key, we can call storage upload/download operations.
$keysResponse = Invoke-WebRequest -Uri https://management.azure.com/subscriptions/<SUBSCRIPTION-ID>/resourceGroups/<RESOURCE-GROUP>/providers/Microsoft.Storage/storageAccounts/<STORAGE-ACCOUNT>/listKeys/?api-version=2016-12-01 -Method POST -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."
$keysContent = $keysResponse.Content | ConvertFrom-Json
$key = $keysContent.keys[0].value
Next we create a file called "test.txt". Then use the storage access key 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> -StorageAccountKey $key
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/13/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/13/2017 6:14:25 PM +00:00
SnapshotTime :
ContinuationToken :
Context : Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext
Name : testblob
In this tutorial, you learned how to create a system-assigned managed identity to access Azure Storage using an access key. To learn more about Azure Storage access keys see:
[!div class="nextstepaction"] Manage your storage access keys