Skip to content

Commit a5a4a53

Browse files
authored
Merge pull request #184730 from luisquintanilla/endpoint-identity-quick-fix
Fix managed endpoint references
2 parents 3baa98e + 2288236 commit a5a4a53

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/machine-learning/how-to-access-resources-from-endpoints-managed-identities.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Access Azure resources from managed endpoint
2+
title: Access Azure resources from an online endpoint
33
titleSuffix: Azure Machine Learning
44
description: Securely access Azure resources for your machine learning model deployment from an online endpoint with a system-assigned or user-assigned managed identity.
55
services: machine-learning
@@ -8,7 +8,7 @@ ms.subservice: core
88
ms.author: seramasu
99
ms.reviewer: laobri
1010
author: rsethur
11-
ms.date: 12/22/2021
11+
ms.date: 01/11/2022
1212
ms.topic: how-to
1313
ms.custom: devplatv2
1414

@@ -53,7 +53,7 @@ This guide assumes you don't have a managed identity, a storage account or an on
5353
5454
## Define configuration YAML file for deployment
5555
56-
To deploy a managed endpoint with the CLI, you need to define the configuration in a YAML file. For more information on the YAML schema, see [online endpoint YAML reference](reference-yaml-endpoint-managed-online.md) document.
56+
To deploy an online endpoint with the CLI, you need to define the configuration in a YAML file. For more information on the YAML schema, see [online endpoint YAML reference](reference-yaml-endpoint-managed-online.md) document.
5757
5858
The YAML files in the following examples are used to create online endpoints.
5959
@@ -131,7 +131,7 @@ Decide on the name of your user identity name, and export that value as an envir
131131
---
132132
133133
## Create the managed identity
134-
To access Azure resources, create a system-assigned or user-assigned managed identity for your endpoint.
134+
To access Azure resources, create a system-assigned or user-assigned managed identity for your online endpoint.
135135
136136
# [System-assigned managed identity](#tab/system-identity)
137137
@@ -148,7 +148,7 @@ To create a user-assigned managed identity, use the following:
148148
## Create storage account and container
149149
150150
For this example, create a blob storage account and blob container, and then upload the previously created text file to the blob container.
151-
This is the storage account and blob container that you'll give the endpoint and managed identity access to.
151+
This is the storage account and blob container that you'll give the online endpoint and managed identity access to.
152152
153153
# [System-assigned managed identity](#tab/system-identity)
154154
@@ -189,7 +189,7 @@ Then, upload file in container.
189189
The following code creates an online endpoint without specifying a deployment.
190190
191191
# [System-assigned managed identity](#tab/system-identity)
192-
When you create a managed endpoint, a system-assigned managed identity is created for the endpoint by default.
192+
When you create an online endpoint, a system-assigned managed identity is created for the endpoint by default.
193193
194194
>[!IMPORTANT]
195195
> System assigned managed identities are immutable and can't be changed once created.
@@ -219,7 +219,7 @@ If you encounter any issues, see [Troubleshooting online endpoints deployment an
219219
>[!IMPORTANT]
220220
> Online endpoints require Azure Container Registry pull permission, AcrPull permission, to the container registry and Storage Blob Data Reader permission to the default datastore of the workspace.
221221
222-
You can allow the managed endpoint permission to access your storage via its system-assigned managed identity or give permission to the user-assigned managed identity to access the storage account created in the previous section.
222+
You can allow the online endpoint permission to access your storage via its system-assigned managed identity or give permission to the user-assigned managed identity to access the storage account created in the previous section.
223223
224224
# [System-assigned managed identity](#tab/system-identity)
225225
@@ -271,7 +271,7 @@ Refer to the following script to understand how to use your identity token to ac
271271
272272
## Create a deployment with your configuration
273273
274-
Create a deployment that's associated with the managed endpoint. [Learn more about deploying to online endpoints](how-to-deploy-managed-online-endpoints.md).
274+
Create a deployment that's associated with the online endpoint. [Learn more about deploying to online endpoints](how-to-deploy-managed-online-endpoints.md).
275275
276276
>[!WARNING]
277277
> This deployment can take approximately 8-14 minutes depending on whether the underlying environment/image is being built for the first time. Subsequent deployments using the same environment will go quicker.
@@ -325,7 +325,7 @@ When your deployment completes, the model, the environment, and the endpoint ar
325325
326326
## Confirm your endpoint deployed successfully
327327
328-
Once your endpoint is deployed, confirm its operation. Details of inferencing vary from model to model. For this guide, the JSON query parameters look like:
328+
Once your online endpoint is deployed, confirm its operation. Details of inferencing vary from model to model. For this guide, the JSON query parameters look like:
329329
330330
:::code language="json" source="~/azureml-examples-main/cli/endpoints/online/model-1/sample-request.json" :::
331331
@@ -343,7 +343,7 @@ To call your endpoint, run:
343343
344344
## Delete the endpoint and storage account
345345
346-
If you don't plan to continue using the deployed endpoint and storage, delete them to reduce costs. When you delete the endpoint, all of its associated deployments are deleted as well.
346+
If you don't plan to continue using the deployed online endpoint and storage, delete them to reduce costs. When you delete the endpoint, all of its associated deployments are deleted as well.
347347
348348
# [System-assigned managed identity](#tab/system-identity)
349349

0 commit comments

Comments
 (0)