You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/files/files-managed-identities.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: This article explains how you can authenticate managed identities t
4
4
author: khdownie
5
5
ms.service: azure-file-storage
6
6
ms.topic: how-to
7
-
ms.date: 03/04/2026
7
+
ms.date: 03/16/2026
8
8
ms.author: kendownie
9
9
ms.custom:
10
10
- devx-track-azurepowershell
@@ -202,7 +202,7 @@ The managed identity can be either [system assigned or user assigned](/entra/ide
202
202
203
203
#### Enable a user assigned managed identity
204
204
205
-
1. Sign in to the Azure portal and follow the steps in[create a user assigned managed identity](/entra/identity/managed-identities-azure-resources/manage-user-assigned-managed-identities-azure-portal#create-a-user-assigned-managed-identity).
205
+
1. Sign in to the Azure portal and follow the steps to[create a user assigned managed identity](/entra/identity/managed-identities-azure-resources/manage-user-assigned-managed-identities-azure-portal#create-a-user-assigned-managed-identity).
206
206
207
207
1. Go to the user assigned managed identity you just created and copy the **Client ID**. You need this value later.
208
208
@@ -226,7 +226,7 @@ The managed identity can be either [system assigned or user assigned](/entra/ide
226
226
227
227
### Add user assigned managed identity to VM
228
228
229
-
If you created a user assigned managed identity, follow these steps.
229
+
If you created a user assigned managed identity, follow these steps to add it to your VM.
230
230
231
231
1. Go to your VM. From the service menu, under **Security**, select **Identity**.
232
232
@@ -380,16 +380,16 @@ You have two options for configuring authentication on Linux:
380
380
381
381
You can use a system assigned or user assigned managed identity to configure authentication.
382
382
383
-
If your VM has a user assigned managed identity, run the following command to get a token from the Azure Instance Metadata Service (IMDS) and store it automatically. Replace `<client-id>` with the client ID of your managed identity. If you don't have the Client ID, go to the managed identity in the Azure portal and copy the Client ID.
383
+
If your VM has a user assigned managed identity, run the following command to get a token from the Azure Instance Metadata Service (IMDS) and store it automatically. Replace `<storage-account-name>` with your storage account name. Replace `<client-id>` with the client ID of your managed identity. If you don't have the Client ID, go to the managed identity in the Azure portal and copy the Client ID.
384
384
385
385
```bash
386
-
sudo azfilesauthmanager set https://<storage_account>.file.core.windows.net --imds-client-id <client-id>
386
+
sudo azfilesauthmanager set https://<storage-account-name>.file.core.windows.net --imds-client-id <client-id>
387
387
```
388
388
389
389
If your VM has a system assigned managed identity, use the `--system` flag:
390
390
391
391
```bash
392
-
sudo azfilesauthmanager set https://<storage_account>.file.core.windows.net --imds-client-id <client-id> --system
392
+
sudo azfilesauthmanager set https://<storage-account-name>.file.core.windows.net --imds-client-id <client-id> --system
Linux developers can use the shared library that's automatically installed with the azfilesauth package. You can link against the library in your C/C++ applications for direct API access.
522
+
Linux developers can use the shared library that's automatically installed with the `azfilesauth` package. You can link against the library in your C/C++ applications for direct API access.
523
523
524
524
Be sure to include the [public header](https://github.com/Azure/AzFilesAuthenticator/blob/main/include/azfilesauth.h).
0 commit comments