Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 29b7497

Browse files
committedJan 14, 2022
UI updates
1 parent b859674 commit 29b7497

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed
 

‎articles/machine-learning/how-to-connect-data-ui.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ For a code first experience, see the following articles to use the [Azure Machin
4747

4848
You can create datastores from [these Azure storage solutions](how-to-access-data.md#matrix). **For unsupported storage solutions**, and to save data egress cost during ML experiments, you must [move your data](how-to-access-data.md#move) to a supported Azure storage solution. [Learn more about datastores](how-to-access-data.md).
4949

50+
You can create datastores with credential-based access or identity-based access.
51+
52+
# [Credential-based](#tab/credential)
53+
5054
Create a new datastore in a few steps with the Azure Machine Learning studio.
5155

5256
> [!IMPORTANT]
@@ -61,6 +65,23 @@ The following example demonstrates what the form looks like when you create an *
6165

6266
![Form for a new datastore](media/how-to-connect-data-ui/new-datastore-form.png)
6367

68+
# [Identity-based](#tab/identity)
69+
70+
Create a new datastore in a few steps with the Azure Machine Learning studio. Learn more about [identity-based data access](how-to-identity-based-data-access.md).
71+
72+
> [!IMPORTANT]
73+
> If your data storage account is in a virtual network, additional configuration steps are required to ensure the studio has access to your data. See [Network isolation & privacy](how-to-enable-studio-virtual-network.md) to ensure the appropriate configuration steps are applied.
74+
75+
1. Sign in to [Azure Machine Learning studio](https://ml.azure.com/).
76+
1. Select **Datastores** on the left pane under **Manage**.
77+
1. Select **+ New datastore**.
78+
1. Complete the form to create and register a new datastore. The form intelligently updates itself based on your selections for Azure storage type. See [which storage types support identity-based](how-to-identity-based-data-access.md#storage-access-permissions) data access.
79+
1. Select **No** to not **Save credentials with the datastore for data access**.
80+
81+
The following example demonstrates what the form looks like when you create an **Azure blob datastore**:
82+
83+
![Form for a new datastore](media/how-to-connect-data-ui/new-id-based-datastore-form.png)
84+
---
6485
## Create datasets
6586

6687
After you create a datastore, create a dataset to interact with your data. Datasets package your data into a lazily evaluated consumable object for machine learning tasks, like training. [Learn more about datasets](how-to-create-register-datasets.md).

‎articles/machine-learning/how-to-identity-based-data-access.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ms.custom: contperf-fy21q1, devx-track-python, data4ml
1919
In this article, you learn how to connect to storage services on Azure by using identity-based data access and Azure Machine Learning datastores via the [Azure Machine Learning SDK for Python](/python/api/overview/azure/ml/intro).
2020

2121
Typically, datastores use credential-based data access to confirm you have permission to access the storage service. They keep connection information, like your subscription ID and token authorization, in the [key vault](https://azure.microsoft.com/services/key-vault/) that's associated with the workspace. When you create a datastore that uses **identity-based data access**, your Azure account ([Azure Active Directory token](../active-directory/fundamentals/active-directory-whatis.md)) is used to confirm you have permission to access the storage service. In the **identity-based data access** scenario, no authentication credentials are saved. Only the storage account information is stored in the datastore.
22+
23+
To create datastores with identity-based data access via the Azure Machine Learning studio UI, see [Connect to data with the Azure Machine Learning studio](how-to-connect-data-ui.md#create-datastores).
2224

2325
To create datastores that use credential-based authentication, like access keys or service principals, see [Connect to storage services on Azure](how-to-access-data.md).
2426

Loading

0 commit comments

Comments
 (0)
Please sign in to comment.