resource "azurerm_search_service" "${MyResource}" {
name = "acceptanceTestSearchService1"
resource_group_name = "\${azurerm_resource_group.test.name}"
location = "West US"
sku = "standard"
}
azurerm_search_service
The preceding code creates a resource named "acceptanceTestSearchService1" in the ${azurerm_resource_group.test.name} resource group located in the West US location. The resource has the standard SKU.
Shortcut: tf_azurerm_search_service
0 Comments
Add Comment
Log in to add a comment