Skip to content

Commit 68d1b32

Browse files
Merge pull request #245453 from davidsmatlak/ds-ghi-112449
Fixes JSON code sample
2 parents b7223de + 22315e0 commit 68d1b32

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

articles/azure-resource-manager/managed-applications/publish-managed-identity.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Managed app with managed identity
33
description: Configure an Azure Managed Application with managed identity for linking to existing resources, managing Azure resources, and providing operational identity for Activity Log.
44
ms.topic: conceptual
5-
ms.date: 05/01/2023
5+
ms.date: 07/19/2023
66
ms.custom: subject-rbac-steps
77
---
88

@@ -11,7 +11,7 @@ ms.custom: subject-rbac-steps
1111
> [!NOTE]
1212
> Managed identity support for Azure Managed Applications is currently in preview. Please use the 2018-09-01-preview api version to utilize managed identity.
1313
14-
Learn how to configure a managed application to contain a managed identity. A managed identity can be used to allow the customer to grant the managed application access to existing resources. The identity is managed by the Azure platform and doesn't require you to provision or rotate any secrets. For more about managed identities in Azure Active Directory (Azure AD), see [Managed identities for Azure resources](../../active-directory/managed-identities-azure-resources/overview.md).
14+
Learn how to configure a managed application to contain a managed identity. A managed identity can be used to allow the customer to grant the managed application access to existing resources. The Azure platform manages the identity and doesn't require you to provision or rotate any secrets. For more about managed identities in Azure Active Directory (Azure AD), see [Managed identities for Azure resources](../../active-directory/managed-identities-azure-resources/overview.md).
1515

1616
Your application can be granted two types of identities:
1717

@@ -32,15 +32,16 @@ Creating a managed application with a managed identity requires another property
3232

3333
```json
3434
{
35-
"identity": {
36-
"type": "SystemAssigned, UserAssigned",
37-
"userAssignedIdentities": {
38-
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userassignedidentites/myuserassignedidentity": {}
35+
"identity": {
36+
"type": "SystemAssigned, UserAssigned",
37+
"userAssignedIdentities": {
38+
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userassignedidentites/myuserassignedidentity": {}
39+
}
3940
}
4041
}
4142
```
4243

43-
There are two common ways to create a managed application with **identity**: [createUiDefinition.json](./create-uidefinition-overview.md) and [Azure Resource Manager templates](../templates/syntax.md). For simple single create scenarios, _createUiDefinition_ should be used to enable managed identity, because it provides a richer experience. However, when dealing with advanced or complex systems that require automated or multiple managed application deployments, templates can be used.
44+
There are two common ways to create a managed application with `identity`: [createUiDefinition.json](./create-uidefinition-overview.md) and [Azure Resource Manager templates](../templates/syntax.md). For simple single create scenarios, _createUiDefinition_ should be used to enable managed identity, because it provides a richer experience. However, when dealing with advanced or complex systems that require automated or multiple managed application deployments, templates can be used.
4445

4546
### Using createUiDefinition
4647

@@ -204,7 +205,7 @@ Managed identity can also be used to deploy a managed application that requires
204205

205206
### Authoring the createUiDefinition with a linked resource
206207

207-
When linking the deployment of the managed application to existing resources, both the existing Azure resource and a user-assigned managed identity with the applicable role assignment on that resource must be provided.
208+
When you link the deployment of the managed application to existing resources, both the existing Azure resource and a user-assigned managed identity with the applicable role assignment on that resource must be provided.
208209

209210
A sample _createUiDefinition.json_ that requires two inputs: a network interface resource ID and a user assigned managed identity resource ID.
210211

0 commit comments

Comments
 (0)