Skip to content

Commit 2e10081

Browse files
author
Markus Vilcinskas
committed
arturo116
1 parent b4237b8 commit 2e10081

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

articles/active-directory/managed-identities-azure-resources/tutorial-windows-vm-ua-arm.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ services: active-directory
55
documentationcenter: ''
66
author: MarkusVi
77
manager: daveba
8-
editor: daveba
8+
editor:
99
ms.service: active-directory
1010
ms.subservice: msi
1111
ms.devlang: na
1212
ms.topic: tutorial
1313
ms.tgt_pltfrm: na
1414
ms.workload: identity
15-
ms.date: 01/10/2020
15+
ms.date: 01/14/2020
1616
ms.author: markvi
1717
ms.collection: M365-identity-device-management
1818
---
@@ -49,7 +49,16 @@ You learn how to:
4949
- Run `Install-Module -Name PowerShellGet -AllowPrerelease` to get the pre-release version of the `PowerShellGet` module (you may need to `Exit` out of the current PowerShell session after you run this command to install the `Az.ManagedServiceIdentity` module).
5050
- Run `Install-Module -Name Az.ManagedServiceIdentity -AllowPrerelease` to install the prerelease version of the `Az.ManagedServiceIdentity` module to perform the user-assigned identity operations in this article.
5151

52-
## Create identity
52+
53+
## Enable
54+
55+
For a scenario that is based on a user-assigned identity, you need to perform the following steps:
56+
57+
- Create an identity
58+
59+
- Assign the newly created identity
60+
61+
### Create identity
5362

5463
This section shows how to create a user-assigned identity. A user-assigned identity is created as a standalone Azure resource. Using the [New-AzUserAssignedIdentity](/powershell/module/az.managedserviceidentity/get-azuserassignedidentity), Azure creates an identity in your Azure AD tenant that can be assigned to one or more Azure service instances.
5564

@@ -75,7 +84,7 @@ Type: Microsoft.ManagedIdentity/userAssignedIdentities
7584
}
7685
```
7786

78-
## Assign identity
87+
### Assign identity
7988

8089
This section shows how to Assign the user-assigned identity to a Windows VM. A user-assigned identity can be used by clients on multiple Azure resources. Use the following commands to assign the user-assigned identity to a single VM. Use the `Id` property returned in the previous step for the `-IdentityID` parameter.
8190

@@ -109,7 +118,9 @@ ObjectType: ServicePrincipal
109118
CanDelegate: False
110119
```
111120

112-
## Get an access token
121+
## Access data
122+
123+
### Get an access token
113124

114125
For the remainder of the tutorial, you will work from the VM we created earlier.
115126

@@ -129,7 +140,7 @@ For the remainder of the tutorial, you will work from the VM we created earlier.
129140
$ArmToken = $content.access_token
130141
```
131142
132-
## Read properties
143+
### Read properties
133144
134145
Use the access token retrieved in the previous step to access Azure Resource Manager, and read the properties of the Resource Group you granted your user-assigned identity access. Replace `<SUBSCRIPTION ID>` with the subscription id of your environment.
135146

0 commit comments

Comments
 (0)