Search

Overview

The Search builder creates storage accounts and their associated containers.

  • Search (Microsoft.Search/searchServices)

Builder Keywords

KeywordPurpose
nameSets the name of the Azure Search instance.
skuSets the sku of the Azure Search instance.
replicasSets the replica count of the Azure Search instance.
partitionsSets the number of partitions of the Azure Search instance.

Configuration Members

MemberPurpose
AdminKeyGets an ARM expression for the admin key of the search instance.
QueryKeyGets an ARM expression for the query key of the search instance.

Example

open Farmer
open Farmer.Builders

let mySearch = search {
    name "isaacsSearch"
    sku Search.Basic
}