Skip to content

Commit 80b706b

Browse files
committed
replace multi-service resource
1 parent 0677764 commit 80b706b

File tree

3 files changed

+23
-27
lines changed

3 files changed

+23
-27
lines changed

articles/ai-services/create-account-bicep.md

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,13 @@ Using Bicep to create an Azure AI services resource lets you create a multi-serv
3636

3737
## Review the Bicep file
3838

39-
The Bicep file used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
40-
41-
> [!NOTE]
42-
> * If you use a different resource `kind` (listed below), you may need to change the `sku` parameter to match the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) tier you wish to use. For example, the `TextAnalytics` kind uses `S` instead of `S0`.
43-
> * Many of the Azure AI services have a free `F0` pricing tier that you can use to try the service.
44-
45-
Be sure to change the `sku` parameter to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you are using. For example, use `TextAnalytics` for the Azure AI Language service.
39+
The Bicep file used in this quickstart is from [Azure quickstart templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
4640

4741
:::code language="bicep" source="~/quickstart-templates/quickstarts/microsoft.cognitiveservices/cognitive-services-universalkey/main.bicep":::
4842

49-
One Azure resource is defined in the Bicep file: [Microsoft.CognitiveServices/accounts](/azure/templates/microsoft.cognitiveservices/accounts) specifies that it is an Azure AI services resource. The `kind` field in the Bicep file defines the type of resource.
43+
One Azure resource is defined in the Bicep file. The `kind` field in the Bicep file defines the type of resource.
44+
45+
As needed change the `sku` parameter value to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you are using. For example, use `TextAnalytics` for the Azure AI Language service. The `TextAnalytics` kind uses `S` instead of `S0` for the `sku` value.
5046

5147
## Deploy the Bicep file
5248

@@ -107,11 +103,10 @@ Remove-AzResourceGroup -Name exampleRG
107103

108104
---
109105

106+
## Related content
110107

111-
## See also
112-
113-
* See **[Authenticate requests to Azure AI services](authentication.md)** on how to securely work with Azure AI services.
114-
* See **[What are Azure AI services?](./what-are-ai-services.md)** for a list of Azure AI services.
115-
* See **[Natural language support](language-support.md)** to see the list of natural languages that Azure AI services supports.
116-
* See **[Use Azure AI services as containers](cognitive-services-container-support.md)** to understand how to use Azure AI services on-premises.
117-
* See **[Plan and manage costs for Azure AI services](plan-manage-costs.md)** to estimate cost of using Azure AI services.
108+
* [Authenticate requests to Azure AI services](authentication.md).
109+
* [What are Azure AI services?](./what-are-ai-services.md)
110+
* [Natural language support](language-support.md)
111+
* [Use Azure AI services as containers](cognitive-services-container-support.md).
112+
* [Plan and manage costs for Azure AI services](plan-manage-costs.md).

articles/ai-services/create-account-resource-manager-template.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
title: "Quickstart: Create an Azure AI services resource by using an ARM template"
33
description: Learn how to use an Azure Resource Manager template to create an Azure AI services resource.
44
keywords: Azure AI services, cognitive solutions, cognitive intelligence, cognitive artificial intelligence
5-
#services: cognitive-services
6-
author: aahill
5+
author: eric-urban
76
manager: nitinme
87
ms.service: azure-ai-services
98
ms.topic: quickstart
10-
ms.date: 01/20/2024
11-
ms.author: aahi
9+
ms.date: 8/1/2024
10+
ms.author: eur
1211
ms.custom:
1312
- subject-armqs
1413
- mode-arm
@@ -30,11 +29,13 @@ This quickstart shows you how to use an Azure Resource Manager template (ARM tem
3029

3130
## Review the template
3231

33-
The template that you use in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
32+
The template that you use in this quickstart is from [Azure quickstart templates](https://azure.microsoft.com/resources/templates/cognitive-services-universalkey/).
3433

3534
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.cognitiveservices/cognitive-services-universalkey/azuredeploy.json":::
3635

37-
One Azure resource is defined in the Bicep file: [Microsoft.CognitiveServices/accounts](/azure/templates/microsoft.cognitiveservices/accounts) specifies that it's an Azure AI services resource. The `kind` field in the Bicep file defines the type of resource.
36+
One Azure resource is defined in the Bicep file. The `kind` field in the Bicep file defines the type of resource.
37+
38+
As needed change the `sku` parameter value to the [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/) instance you want. The `sku` depends on the resource `kind` that you are using. For example, use `TextAnalytics` for the Azure AI Language service. The `TextAnalytics` kind uses `S` instead of `S0` for the `sku` value.
3839

3940
## Deploy the template
4041

@@ -51,7 +52,7 @@ One Azure resource is defined in the Bicep file: [Microsoft.CognitiveServices/ac
5152
| **Subscription** | Select an Azure subscription. |
5253
| **Resource group** | Select **Create new**, enter a unique name for the resource group, and then select **OK**. |
5354
| **Region** | Select a region (for example, **East US**). |
54-
| **Cognitive Service Name** | Replace the value with a unique name for your Azure AI services resource. You'll need the name in the next section when you validate the deployment. |
55+
| **AI service Name** | Replace the value with a unique name for your Azure AI services resource. You'll need the name in the next section when you validate the deployment. |
5556
| **Location** | Replace with the region that you selected. |
5657
| **Sku** | Select the [pricing tier](https://azure.microsoft.com/pricing/details/cognitive-services/) for your resource. |
5758

articles/ai-services/create-account-terraform.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: 'Quickstart: Create an Azure AI services resource using Terraform'
3-
description: 'In this article, you create an Azure AI services resource using Terraform'
4-
keywords: Azure AI services, cognitive solutions, cognitive intelligence, cognitive artificial intelligence
3+
description: In this article, you create an Azure AI services resource using Terraform.
4+
keywords: Azure AI services, cognitive, artificial intelligence
55
ms.service: azure-ai-services
66
ms.topic: quickstart
7-
ms.date: 2/23/2024
7+
ms.date: 8/1/2024
88
ms.custom:
99
- devx-track-terraform
1010
- ignite-2023
@@ -126,6 +126,6 @@ In this article, you learn how to:
126126

127127
[Troubleshoot common problems when using Terraform on Azure](/azure/developer/terraform/troubleshoot)
128128

129-
## Next steps
129+
## Related content
130130

131-
- [Learn more about Azure AI services resources](./multi-service-resource.md)
131+
- [Learn more about Azure AI services resources](./multi-service-resource.md)

0 commit comments

Comments
 (0)