Skip to content

Commit 44a327d

Browse files
committed
edits
1 parent 4e687a5 commit 44a327d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

articles/storage/files/files-managed-identities.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article explains how you can authenticate managed identities t
44
author: khdownie
55
ms.service: azure-file-storage
66
ms.topic: how-to
7-
ms.date: 03/04/2026
7+
ms.date: 03/16/2026
88
ms.author: kendownie
99
ms.custom:
1010
- devx-track-azurepowershell
@@ -202,7 +202,7 @@ The managed identity can be either [system assigned or user assigned](/entra/ide
202202

203203
#### Enable a user assigned managed identity
204204

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).
206206

207207
1. Go to the user assigned managed identity you just created and copy the **Client ID**. You need this value later.
208208

@@ -226,7 +226,7 @@ The managed identity can be either [system assigned or user assigned](/entra/ide
226226

227227
### Add user assigned managed identity to VM
228228

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.
230230

231231
1. Go to your VM. From the service menu, under **Security**, select **Identity**.
232232

@@ -380,16 +380,16 @@ You have two options for configuring authentication on Linux:
380380
381381
You can use a system assigned or user assigned managed identity to configure authentication.
382382
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.
384384
385385
```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>
387387
```
388388
389389
If your VM has a system assigned managed identity, use the `--system` flag:
390390
391391
```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
393393
```
394394
395395
Verify the ticket was created properly:
@@ -519,7 +519,7 @@ extern "C" AZFILESSMBMI_API HRESULT SmbClearCredential(
519519
520520
### [Linux](#tab/linux)
521521
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.
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.
523523
524524
Be sure to include the [public header](https://github.com/Azure/AzFilesAuthenticator/blob/main/include/azfilesauth.h).
525525

0 commit comments

Comments
 (0)