FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

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:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io