Skip to content

Commit b4d22ce

Browse files
authored
Merge pull request #229592 from rwike77/bugfix
changed required role assignment
2 parents 74318df + d059459 commit b4d22ce

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/active-directory/develop/workload-identity-federation-create-trust-user-assigned-managed-identity.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Create a trust relationship between a user-assigned managed identity and an external identity provider
33
description: Set up a trust relationship between a user-assigned managed identity in Azure AD and an external identity provider. This allows a software workload outside of Azure to access Azure AD protected resources without using secrets or certificates.
44
services: active-directory
5-
author: davidmu1
5+
author: rwike77
66
manager: CelesteDG
77

88
ms.service: active-directory
99
ms.subservice: develop
1010
ms.topic: how-to
1111
ms.workload: identity
12-
ms.date: 01/19/2023
13-
ms.author: davidmu
12+
ms.date: 03/06/2023
13+
ms.author: ryanwi
1414
ms.custom: aaddev
1515
ms.reviewer: shkhalide, udayh, vakarand
1616
zone_pivot_groups: identity-wif-mi-methods
@@ -38,7 +38,7 @@ To learn more about supported regions, time to propagate federated credential up
3838
- If you're unfamiliar with managed identities for Azure resources, check out the [overview section](../managed-identities-azure-resources/overview.md). Be sure to review the [difference between a system-assigned and user-assigned managed identity](../managed-identities-azure-resources/overview.md#managed-identity-types).
3939
- If you don't already have an Azure account, [sign up for a free account](https://azure.microsoft.com/free/) before you continue.
4040
- Get the information for your external IdP and software workload, which you need in the following steps.
41-
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Managed Identity Contributor](../../role-based-access-control/built-in-roles.md#managed-identity-contributor) role assignment.
41+
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Contributor](../../role-based-access-control/built-in-roles.md#contributor) or [Owner](../../role-based-access-control/built-in-roles.md#owner) role assignment.
4242
- [Create a user-assigned manged identity](../managed-identities-azure-resources/how-manage-user-assigned-managed-identities.md?pivots=identity-mi-methods-azp#create-a-user-assigned-managed-identity)
4343
- Find the object ID of the user-assigned managed identity, which you need in the following steps.
4444

@@ -179,7 +179,7 @@ To delete a specific federated identity credential, select the **Delete** icon f
179179
- If you're unfamiliar with managed identities for Azure resources, check out the [overview section](../managed-identities-azure-resources/overview.md). Be sure to review the [difference between a system-assigned and user-assigned managed identity](../managed-identities-azure-resources/overview.md#managed-identity-types).
180180
- If you don't already have an Azure account, [sign up for a free account](https://azure.microsoft.com/free/) before you continue.
181181
- Get the information for your external IdP and software workload, which you need in the following steps.
182-
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Managed Identity Contributor](../../role-based-access-control/built-in-roles.md#managed-identity-contributor) role assignment.
182+
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Contributor](../../role-based-access-control/built-in-roles.md#contributor) or [Owner](../../role-based-access-control/built-in-roles.md#owner) role assignment.
183183
- [Create a user-assigned manged identity](../managed-identities-azure-resources/how-manage-user-assigned-managed-identities.md?pivots=identity-mi-methods-azcli#create-a-user-assigned-managed-identity-1)
184184
- Find the object ID of the user-assigned managed identity, which you need in the following steps.
185185

@@ -277,7 +277,7 @@ az identity federated-credential delete --name $ficId --identity-name $uaId --re
277277
- If you're unfamiliar with managed identities for Azure resources, check out the [overview section](../managed-identities-azure-resources/overview.md). Be sure to review the [difference between a system-assigned and user-assigned managed identity](../managed-identities-azure-resources/overview.md#managed-identity-types).
278278
- If you don't already have an Azure account, [sign up for a free account](https://azure.microsoft.com/free/) before you continue.
279279
- Get the information for your external IdP and software workload, which you need in the following steps.
280-
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Managed Identity Contributor](../../role-based-access-control/built-in-roles.md#managed-identity-contributor) role assignment.
280+
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Contributor](../../role-based-access-control/built-in-roles.md#contributor) or [Owner](../../role-based-access-control/built-in-roles.md#owner) role assignment.
281281
- To run the example scripts, you have two options:
282282
- Use [Azure Cloud Shell](../../cloud-shell/overview.md), which you can open by using the **Try It** button in the upper-right corner of code blocks.
283283
- Run scripts locally with Azure PowerShell, as described in the next section.
@@ -351,7 +351,7 @@ Remove-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -Identity
351351
- If you're unfamiliar with managed identities for Azure resources, check out the [overview section](../managed-identities-azure-resources/overview.md). Be sure to review the [difference between a system-assigned and user-assigned managed identity](../managed-identities-azure-resources/overview.md#managed-identity-types).
352352
- If you don't already have an Azure account, [sign up for a free account](https://azure.microsoft.com/free/) before you continue.
353353
- Get the information for your external IdP and software workload, which you need in the following steps.
354-
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Managed Identity Contributor](../../role-based-access-control/built-in-roles.md#managed-identity-contributor) role assignment.
354+
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Contributor](../../role-based-access-control/built-in-roles.md#contributor) or [Owner](../../role-based-access-control/built-in-roles.md#owner) role assignment.
355355
- [Create a user-assigned manged identity](../managed-identities-azure-resources/how-manage-user-assigned-managed-identities.md?pivots=identity-mi-methods-arm#create-a-user-assigned-managed-identity-3)
356356
- Find the object ID of the user-assigned managed identity, which you need in the following steps.
357357

@@ -468,7 +468,7 @@ Make sure that any kind of automation creates federated identity credentials und
468468
- If you're unfamiliar with managed identities for Azure resources, check out the [overview section](../managed-identities-azure-resources/overview.md). Be sure to review the [difference between a system-assigned and user-assigned managed identity](../managed-identities-azure-resources/overview.md#managed-identity-types).
469469
- If you don't already have an Azure account, [sign up for a free account](https://azure.microsoft.com/free/) before you continue.
470470
- Get the information for your external IdP and software workload, which you need in the following steps.
471-
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Managed Identity Contributor](../../role-based-access-control/built-in-roles.md#managed-identity-contributor) role assignment.
471+
- To create a user-assigned managed identity and configure a federated identity credential, your account needs the [Contributor](../../role-based-access-control/built-in-roles.md#contributor) or [Owner](../../role-based-access-control/built-in-roles.md#owner) role assignment.
472472
- You can run all the commands in this article either in the cloud or locally:
473473
- To run in the cloud, use [Azure Cloud Shell](../../cloud-shell/overview.md).
474474
- To run locally, install [curl](https://curl.haxx.se/download.html) and the [Azure CLI](/cli/azure/install-azure-cli).

0 commit comments

Comments
 (0)