Skip to content

Commit fa06a76

Browse files
Apply suggestions from code review
Co-authored-by: Jason Wells <[email protected]>
1 parent aa72e11 commit fa06a76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-apps/managed-identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Specify each user-assigned identity by adding an item to the `userAssignedIdenti
169169
For a complete ARM template example, see [ARM API Specification](azure-resource-manager-api-spec.md?tabs=arm-template#container-app-examples).
170170

171171
> [!NOTE]
172-
> An application can have both system-assigned and user-assigned identities at the same time. In this case, the value for `type` property would be `SystemAssigned,UserAssigned`.
172+
> An application can have both system-assigned and user-assigned identities at the same time. In this case, the value for the `type` property would be `SystemAssigned,UserAssigned`.
173173
174174
# [YAML](#tab/yaml)
175175

@@ -203,7 +203,7 @@ For some resources, you need to configure role assignments for your app's manage
203203

204204
With managed identities, an app can obtain tokens to access Azure resources that use Microsoft Entra ID, such as Azure SQL Database, Azure Key Vault, and Azure Storage. These tokens represent the application accessing the resource, and not any specific user of the application.
205205

206-
Container Apps provides an internally accessible [REST endpoint](managed-identity.md?tabs=cli%2Chttp#rest-endpoint-reference) to retrieve tokens. The REST endpoint is availasble from within the app with a standard HTTP `GET` request, which you can implement with a generic HTTP client in your preferred language. For .NET, JavaScript, Java, and Python, the Azure Identity client library provides an abstraction over this REST endpoint. You can connect to other Azure services by adding a credential object to the service-specific client.
206+
Container Apps provides an internally accessible [REST endpoint](managed-identity.md?tabs=cli%2Chttp#rest-endpoint-reference) to retrieve tokens. The REST endpoint is available from within the app with a standard HTTP `GET` request, which you can send with a generic HTTP client in your preferred language. For .NET, JavaScript, Java, and Python, the Azure Identity client library provides an abstraction over this REST endpoint. You can connect to other Azure services by adding a credential object to the service-specific client.
207207

208208
> [!NOTE]
209209
> When using Azure Identity client library, you need to explicitly specify the user-assigned managed identity client id.

0 commit comments

Comments
 (0)