Skip to content

Commit 4322dc4

Browse files
committed
Branding fixes per content dev
1 parent 7c884bc commit 4322dc4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/search/search-get-started-terraform.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
title: 'Quickstart: Create an Azure Search service using Terraform'
2+
title: 'Quickstart: Create an Azure Cognitive Search service using Terraform'
33
description: 'In this article, you create an Azure Search service using Terraform'
44
ms.topic: quickstart
5-
ms.date: 3/27/2023
5+
ms.date: 3/28/2023
66
ms.custom: devx-track-terraform
77
author: TomArcherMsft
88
ms.author: tarcher
99
ms.service: cognitive-search
1010
---
1111

12-
# Quickstart: Create an Azure Search service using Terraform
12+
# Quickstart: Create an Azure Cognitive Search service using Terraform
1313

14-
This article shows how to use Terraform to create an [Azure Search service](./search-what-is-azure-search.md) using [Terraform](/azure/developer/terraform/quickstart-configure).
14+
This article shows how to use Terraform to create an [Azure Cognitive Search service](./search-what-is-azure-search.md) using [Terraform](/azure/developer/terraform/quickstart-configure).
1515

1616
[!INCLUDE [Terraform abstract](~/azure-dev-docs-pr/articles/terraform/includes/abstract.md)]
1717

@@ -21,7 +21,7 @@ In this article, you learn how to:
2121
> * Create a random pet name for the Azure resource group name using [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet)
2222
> * Create an Azure resource group using [azurerm_resource_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group)
2323
> * Create a random string using [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string)
24-
> * Create an Azure Search service using [azurerm_search_service](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/search_service)
24+
> * Create an Azure Cognitive Search service using [azurerm_search_service](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/search_service)
2525
2626
[!INCLUDE [AI attribution](../../includes/ai-generated-attribution.md)]
2727

@@ -68,19 +68,19 @@ In this article, you learn how to:
6868

6969
## Verify the results
7070

71-
1. Get the Azure resource name in which the Azure Search service was created.
71+
1. Get the Azure resource name in which the Azure Cognitive Search service was created.
7272

7373
```console
7474
resource_group_name=$(terraform output -raw resource_group_name)
7575
```
7676

77-
1. Get the Azure Search service name.
77+
1. Get the Azure Cognitive Search service name.
7878

7979
```console
8080
azurerm_search_service_name=$(terraform output -raw azurerm_search_service_name)
8181
```
8282

83-
1. Run [az search service show](/cli/azure/search/service#az-search-service-show) to show the Azure Search service you created in this article.
83+
1. Run [az search service show](/cli/azure/search/service#az-search-service-show) to show the Azure Cognitive Search service you created in this article.
8484

8585
```azurecli
8686
az search service show --name $azurerm_search_service_name \
@@ -98,4 +98,4 @@ In this article, you learn how to:
9898
## Next steps
9999

100100
> [!div class="nextstepaction"]
101-
> [Create an Azure Search index using the Azure portal](./search-get-started-portal.md)
101+
> [Create an Azure Cognitive Search index using the Azure portal](./search-get-started-portal.md)

0 commit comments

Comments
 (0)