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/machine-learning/how-to-manage-hub-workspace-template.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.topic: how-to
10
10
ms.author: larryfr
11
11
author: Blackmist
12
12
ms.reviewer: deeikele
13
-
ms.date: 02/29/2024
13
+
ms.date: 03/07/2025
14
14
#Customer intent: As a DevOps person, I need to automate or customize the creation of Azure Machine Learning by using templates.
15
15
---
16
16
@@ -26,7 +26,7 @@ The template used in this article can be found at [https://github.com/Azure/azur
26
26
- Azure Key Vault
27
27
- Azure Container Registry
28
28
- Azure Application Insights
29
-
- Azure AI services (required for Azure AI Foundry, and may be dropped for Azure Machine Learning use cases)
29
+
- Azure AI services (required for Azure AI Foundry, and can be dropped for Azure Machine Learning use cases)
30
30
31
31
## Prerequisites
32
32
@@ -63,7 +63,7 @@ The Bicep template is made up of the following files:
63
63
| [dependent-resources.bicep](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.machinelearningservices/aistudio-basics/modules/dependent-resources.bicep) | Defines the dependent resources for the Azure AI hub. Azure Storage Account, Container Registry, Key Vault, and Application Insights. |
64
64
65
65
> [!IMPORTANT]
66
-
> The example templates may not always use the latest API version for the Azure resources it creates. Before using the template, we recommend modifying it to use the latest API versions. Each Azure service has its own set of API versions. For information on the API for a specific service, check the service information in the [Azure REST API reference](/rest/api/azure/).
66
+
> The example templates might not always use the latest API version for the Azure resources it creates. Before using the template, we recommend modifying it to use the latest API versions. Each Azure service has its own set of API versions. For information on the API for a specific service, check the service information in the [Azure REST API reference](/rest/api/azure/).
67
67
>
68
68
> The AI hub resource is based on Azure Machine Learning. For information on the latest API versions for Azure Machine Learning, see the [Azure Machine Learning REST API reference](/rest/api/azureml/). To update this API version, find the `Microsoft.MachineLearningServices/<resource>` entry for the resource type and update it to the latest version. The following example is an entry for the Azure AI hub that uses an API version of `2023-08-01-preview`:
69
69
>
@@ -101,21 +101,21 @@ To run the Bicep template, use the following commands from the `aistudio-basics`
101
101
102
102
---
103
103
104
-
1. To run the template, use the following command. Replace `myai` with the name to use for your resources. This value is used, along with generated prefixes and suffixes, to create a unique name for the resources created by the template.
104
+
1. To run the template, use the following command. Replace `myai` with the name to use for your Azure AI Foundry hub. This value is used, along with generated prefixes and suffixes, to create a unique name for the resources created by the template.
105
105
106
106
> [!TIP]
107
107
> The `aiResourceName` must be 5 or less characters. It can't be entirely numeric or contain the following characters: `~ ! @ # $ % ^ & * ( ) = + _ [ ] { } \ | ; : . ' " , < > / ?`.
108
108
109
109
# [Azure CLI](#tab/cli)
110
110
111
111
```azurecli
112
-
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters aiResourceName=myai
112
+
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters aiHubeName=myai
0 commit comments