1.7 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
azurerm | Azure Resource Manager: azurerm_search_service | docs-azurerm-resource-search-service | Manage a Search Service. |
azurerm_search_service
Allows you to manage an Azure Search Service
Example Usage
resource "azurerm_resource_group" "test" {
name = "acceptanceTestResourceGroup1"
location = "West US"
}
resource "azurerm_search_service" "test" {
name = "acceptanceTestSearchService1"
resource_group_name = "${azurerm_resource_group.test.name}"
location = "West US"
sku = "standard"
tags {
environment = "staging"
database = "test"
}
}
Argument Reference
The following arguments are supported:
-
name
- (Required) The name of the Search Service. -
resource_group_name
- (Required) The name of the resource group in which to create the Search Service. -
location
- (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. -
sku
- (Required) Valid values arefree
andstandard
.standard2
is also valid, but can only be used when it's enabled on the backend by Microsoft support.free
provisions the service in shared clusters.standard
provisions the service in dedicated clusters -
replica_count
- (Optional) Default is 1. Valid values include 1 through 12. Valid only whensku
isstandard
. -
partition_count
- (Optional) Default is 1. Valid values include 1, 2, 3, 4, 6, or 12. Valid only whensku
isstandard
. -
tags
- (Optional) A mapping of tags to assign to the resource.
Attributes Reference
The following attributes are exported:
id
- The Search Service ID.