Skip to content

Commit f1f9d82

Browse files
Merge pull request #6587 from sdgilley/sdg-freshness
freshness update - articles/ai-foundry/how-to/create-azure-ai-project-template.md
2 parents 6861055 + d3be3e0 commit f1f9d82

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

articles/ai-foundry/how-to/create-azure-ai-project-template.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@ ms.service: azure-ai-foundry
99
ms.topic: quickstart-bicep
1010
ms.custom:
1111
- subject-bicepqs
12-
- hub-only
13-
ms.date: 04/29/2025
12+
ms.date: 08/14/2025
1413
# Customer intent: As a DevOps person, I need to automate or customize the creation of a hub by using templates.
1514
---
1615

1716
# Quickstart: Create an Azure AI Foundry project using a Bicep file
1817

19-
[!INCLUDE [hub-only-alt](../includes/uses-fdp-only-alt.md)]
20-
2118
Use a [Microsoft Bicep](/azure/azure-resource-manager/bicep/overview) file (template) to create an [Azure AI Foundry](https://ai.azure.com/?cid=learnDocs) project. A template makes it easy to create resources as a single, coordinated operation. A Bicep file is a text document that defines the resources that are needed for a deployment. It might also specify deployment parameters. Parameters are used to provide input values when using the file to deploy resources.
2219

2320
## Prerequisites
@@ -69,13 +66,13 @@ az deployment group create --resource-group exampleRG --template-file main.bicep
6966

7067
```azurepowershell
7168
New-AzResourceGroup -Name exampleRG -Location eastus
72-
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile main.bicep -aiHubName myai -aiProjectName myai-proj
69+
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile main.bicep -aiFoundryName myai -aiProjectName myai-proj
7370
```
7471

7572
---
7673

7774
> [!NOTE]
78-
> Replace `myai` with the name of your resource.
75+
> Replace `myai` with the name of your resource.
7976
8077
When the deployment finishes, you should see a message indicating the deployment succeeded.
8178

@@ -86,7 +83,7 @@ Use the [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs) to view t
8683
# [Azure CLI](#tab/cli)
8784

8885
```azurecli
89-
az resource list --name exampleRG
86+
az resource list --resource-group exampleRG
9087
```
9188

9289
# [Azure PowerShell](#tab/powershell)

0 commit comments

Comments
 (0)