Skip to content

Commit 9a6e1eb

Browse files
committed
Revert several changes
1 parent a73817f commit 9a6e1eb

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

articles/active-directory/develop/refresh-tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The server can revoke refresh tokens because of a change in credentials, user ac
5656

5757
- [Access tokens in the Microsoft identity platform](access-tokens.md)
5858
- [ID tokens in the Microsoft identity platform](id-tokens.md)
59-
- [Invalidate refresh token](https://learn.microsoft.com/powershell/module/microsoft.graph.beta.users.actions/invoke-mgbetainvalidateuserrefreshtoken?view=graph-powershell-beta.md)
59+
- [Invalidate refresh token](/powershell/module/microsoft.graph.beta.users.actions/invoke-mgbetainvalidateuserrefreshtoken?view=graph-powershell-beta)
6060
- [Single sign-out](v2-protocols-oidc.md#single-sign-out)
6161

6262
## Next steps

articles/active-directory/managed-identities-azure-resources/how-manage-user-assigned-managed-identities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ In this article, you create a user-assigned managed identity by using Azure Reso
255255

256256
You can't list and delete a user-assigned managed identity by using a Resource Manager template. See the following articles to create and list a user-assigned managed identity:
257257

258-
- [List user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-azcli.md#list-user-assigned-managed-identities)
259-
- [Delete user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-azcli.md#delete-a-user-assigned-managed-identity)
258+
- [List user-assigned managed identity](how-to-manage-ua-identity-cli.md#list-user-assigned-managed-identities)
259+
- [Delete user-assigned managed identity](how-to-manage-ua-identity-cli.md#delete-a-user-assigned-managed-identity)
260260

261261
## Template creation and editing
262262

articles/active-directory/managed-identities-azure-resources/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ There are two types of managed identities:
4848
- You authorize the managed identity to have access to one or more services.
4949
- The name of the system-assigned service principal is always the same as the name of the Azure resource it is created for. For a deployment slot, the name of its system-assigned identity is ```<app-name>/slots/<slot-name>```.
5050

51-
- **User-assigned**. You may also create a managed identity as a standalone Azure resource. You can [create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-azp.md) and assign it to one or more Azure Resources. When you enable a user-assigned managed identity:
51+
- **User-assigned**. You may also create a managed identity as a standalone Azure resource. You can [create a user-assigned managed identity](how-to-manage-ua-identity-portal.md) and assign it to one or more Azure Resources. When you enable a user-assigned managed identity:
5252
- A service principal of a special type is created in Azure AD for the identity. The service principal is managed separately from the resources that use it.
5353
- User-assigned identities can be used by multiple resources.
5454
- You authorize the managed identity to have access to one or more services.
@@ -88,7 +88,7 @@ Resources that support system assigned managed identities allow you to:
8888

8989
If you choose a user assigned managed identity instead:
9090

91-
- You can [create, read, update, and delete](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-azp.md) the identities.
91+
- You can [create, read, update, and delete](how-to-manage-ua-identity-portal.md) the identities.
9292
- You can use RBAC role assignments to [grant permissions](howto-assign-access-portal.md).
9393
- User assigned managed identities can be used on more than one resource.
9494
- CRUD operations are available for review in [Azure Activity logs](../../azure-monitor/essentials/activity-log.md).

articles/active-directory/managed-identities-azure-resources/qs-configure-rest-vm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ To assign a user-assigned identity to a VM, your account needs the [Virtual Mach
317317
az account get-access-token
318318
```
319319

320-
4. Create a user-assigned managed identity using the instructions found here: [Create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-rest.md#create-a-user-assigned-managed-identity).
320+
4. Create a user-assigned managed identity using the instructions found here: [Create a user-assigned managed identity](how-to-manage-ua-identity-rest.md#create-a-user-assigned-managed-identity).
321321

322322
5. Create a VM using CURL to call the Azure Resource Manager REST endpoint. The following example creates a VM named *myVM* in the resource group *myResourceGroup* with a user-assigned managed identity `ID1`, as identified in the request body by the value `"identity":{"type":"UserAssigned"}`. Replace `<ACCESS TOKEN>` with the value you received in the previous step when you requested a Bearer access token and the `<SUBSCRIPTION ID>` value as appropriate for your environment.
323323

@@ -492,7 +492,7 @@ To assign a user-assigned identity to a VM, your account needs the [Virtual Mach
492492
az account get-access-token
493493
```
494494

495-
2. Create a user-assigned managed identity using the instructions found here, [Create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-rest.md#create-a-user-assigned-managed-identity).
495+
2. Create a user-assigned managed identity using the instructions found here, [Create a user-assigned managed identity](how-to-manage-ua-identity-rest.md#create-a-user-assigned-managed-identity).
496496

497497
3. To ensure you don't delete existing user or system-assigned managed identities that are assigned to the VM, you need to list the identity types assigned to the VM by using the following CURL command. If you have managed identities assigned to the virtual machine scale set, they are listed under in the `identity` value.
498498

@@ -805,4 +805,4 @@ PATCH https://management.azure.com/subscriptions/<SUBSCRIPTION ID>/resourceGroup
805805

806806
For information on how to create, list, or delete user-assigned managed identities using REST see:
807807

808-
- [Create, list, or delete a user-assigned managed identities using REST API calls](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-rest.md)
808+
- [Create, list, or delete a user-assigned managed identities using REST API calls](how-to-manage-ua-identity-rest.md)

articles/active-directory/managed-identities-azure-resources/qs-configure-rest-vmss.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ In this section, you learn how to add and remove user-assigned managed identity
331331
az account get-access-token
332332
```
333333

334-
4. Create a user-assigned managed identity using the instructions found here: [Create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-rest.md#create-a-user-assigned-managed-identity).
334+
4. Create a user-assigned managed identity using the instructions found here: [Create a user-assigned managed identity](how-to-manage-ua-identity-rest.md#create-a-user-assigned-managed-identity).
335335

336336
5. Create a virtual machine scale set using CURL to call the Azure Resource Manager REST endpoint. The following example creates a virtual machine scale set named *myVMSS* in the resource group *myResourceGroup* with a user-assigned managed identity `ID1`, as identified in the request body by the value `"identity":{"type":"UserAssigned"}`. Replace `<ACCESS TOKEN>` with the value you received in the previous step when you requested a Bearer access token and the `<SUBSCRIPTION ID>` value as appropriate for your environment.
337337

@@ -515,7 +515,7 @@ In this section, you learn how to add and remove user-assigned managed identity
515515
az account get-access-token
516516
```
517517

518-
2. Create a user-assigned managed identity using the instructions found here, [Create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-rest.md#create-a-user-assigned-managed-identity).
518+
2. Create a user-assigned managed identity using the instructions found here, [Create a user-assigned managed identity](how-to-manage-ua-identity-rest.md#create-a-user-assigned-managed-identity).
519519

520520
3. To ensure you don't delete existing user or system-assigned managed identities that are assigned to the virtual machine scale set, you need to list the identity types assigned to the virtual machine scale set by using the following CURL command. If you have managed identities assigned to the virtual machine scale set, they are listed in the `identity` value.
521521

@@ -826,4 +826,4 @@ PATCH https://management.azure.com/subscriptions/<SUBSCRIPTION ID>/resourceGroup
826826

827827
For information on how to create, list, or delete user-assigned managed identities using REST see:
828828

829-
- [Create, list, or delete a user-assigned managed identity using REST API calls](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-rest.md)
829+
- [Create, list, or delete a user-assigned managed identity using REST API calls](how-to-manage-ua-identity-rest.md)

articles/active-directory/managed-identities-azure-resources/qs-configure-template-windows-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The following example shows you how to remove a system-assigned managed identity
116116
In this section, you assign a user-assigned managed identity to an Azure VM using Azure Resource Manager template.
117117

118118
> [!NOTE]
119-
> To create a user-assigned managed identity using an Azure Resource Manager Template, see [Create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-arm.md#create-a-user-assigned-managed-identity).
119+
> To create a user-assigned managed identity using an Azure Resource Manager Template, see [Create a user-assigned managed identity](how-to-manage-ua-identity-arm.md#create-a-user-assigned-managed-identity).
120120
121121
### Assign a user-assigned managed identity to an Azure VM
122122

articles/active-directory/managed-identities-azure-resources/qs-configure-template-windows-vmss.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ If you have a virtual machine scale set that no longer needs a system-assigned m
128128
In this section, you assign a user-assigned managed identity to a virtual machine scale set using Azure Resource Manager template.
129129

130130
> [!Note]
131-
> To create a user-assigned managed identity using an Azure Resource Manager Template, see [Create a user-assigned managed identity](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-arm.md#create-a-user-assigned-managed-identity).
131+
> To create a user-assigned managed identity using an Azure Resource Manager Template, see [Create a user-assigned managed identity](how-to-manage-ua-identity-arm.md#create-a-user-assigned-managed-identity).
132132
133133
### Assign a user-assigned managed identity to a virtual machine scale set
134134

articles/active-directory/managed-identities-azure-resources/tutorial-linux-vm-access-arm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ In this quickstart, you learned how to use a system-assigned managed identity to
106106

107107
> [!div class="nextstepaction"]
108108
>[Azure Resource Manager](../../azure-resource-manager/management/overview.md)
109-
>[Create, list or delete a user-assigned managed identity using Azure PowerShell](./how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-powershell.md)
109+
>[Create, list or delete a user-assigned managed identity using Azure PowerShell](how-to-manage-ua-identity-powershell.md)

0 commit comments

Comments
 (0)