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/app-service/overview-managed-identity.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
2
title: Managed identities
3
-
description: Learn how managed identities work in Azure App Service and Azure Functions, how to configure a managed identity and generate a token for a backend resource.
3
+
description: Learn how managed identities work in Azure App Service and Azure Functions, how to configure a managed identity and generate a token for a back-end resource.
4
4
author: mattchenderson
5
5
6
6
ms.topic: article
7
-
ms.date: 10/30/2019
7
+
ms.date: 03/04/2020
8
8
ms.author: mahender
9
9
ms.reviewer: yevbronsh
10
10
@@ -19,7 +19,7 @@ This topic shows you how to create a managed identity for App Service and Azure
19
19
20
20
Your application can be granted two types of identities:
21
21
- A **system-assigned identity** is tied to your application and is deleted if your app is deleted. An app can only have one system-assigned identity.
22
-
- A **user-assigned identity** is a standalone Azure resource which can be assigned to your app. An app can have multiple user-assigned identities.
22
+
- A **user-assigned identity** is a standalone Azure resource that can be assigned to your app. An app can have multiple user-assigned identities.
23
23
24
24
## Add a system-assigned identity
25
25
@@ -44,12 +44,12 @@ To set up a managed identity in the portal, you will first create an application
44
44
To set up a managed identity using the Azure CLI, you will need to use the `az webapp identity assign` command against an existing application. You have three options for running the examples in this section:
45
45
46
46
- Use [Azure Cloud Shell](../cloud-shell/overview.md) from the Azure portal.
47
-
- Use the embedded Azure Cloud Shell via the "Try It" button, located in the topright corner of each code block below.
47
+
- Use the embedded Azure Cloud Shell via the "Try It" button, located in the top-right corner of each code block below.
48
48
-[Install the latest version of Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli) (2.0.31 or later) if you prefer to use a local CLI console.
49
49
50
50
The following steps will walk you through creating a web app and assigning it an identity using the CLI:
51
51
52
-
1. If you're using the Azure CLI in a local console, first sign in to Azure using [az login](/cli/azure/reference-index#az-login). Use an account that is associated with the Azure subscription under which you would like to deploy the application:
52
+
1. If you're using the Azure CLI in a local console, first sign in to Azure using [az login](/cli/azure/reference-index#az-login). Use an account that's associated with the Azure subscription under which you would like to deploy the application:
53
53
54
54
```azurecli-interactive
55
55
az login
@@ -143,7 +143,7 @@ When the site is created, it has the following additional properties:
143
143
}
144
144
```
145
145
146
-
Where `<TENANTID>` and `<PRINCIPALID>` are replaced with GUIDs. The tenantId property identifies what AAD tenant the identity belongs to. The principalId is a unique identifier for the application's new identity. Within AAD, the service principal has the same name that you gave to your App Service or Azure Functions instance.
146
+
The tenantId property identifies what AAD tenant the identity belongs to. The principalId is a unique identifier for the application's new identity. Within AAD, the service principal has the same name that you gave to your App Service or Azure Functions instance.
147
147
148
148
149
149
## Add a user-assigned identity
@@ -227,7 +227,7 @@ When the site is created, it has the following additional properties:
227
227
}
228
228
```
229
229
230
-
Where `<PRINCIPALID>` and `<CLIENTID>` are replaced with GUIDs. The principalId is a unique identifier for the identity which is used for AAD administration. The clientId is a unique identifier for the application's new identity that is used for specifying which identity to use during runtime calls.
230
+
The principalId is a unique identifier for the identity that's used for AAD administration. The clientId is a unique identifier for the application's new identity that's used for specifying which identity to use during runtime calls.
231
231
232
232
233
233
## Obtain tokens for Azure resources
@@ -412,7 +412,7 @@ For Java applications and functions, the simplest way to work with a managed ide
0 commit comments