Azure Bot Service
1 TopicUpdating the pricing tier of my Azure Search Service
I have been testing out various Teams hosted bots on my Office 365 dev tenant . From a cost perspective I want to use minimal resources so looking to Free tier whilst I develop and test. Is it possible to update the pricing tier (SKU) to free (from Basic), on my search service below, say using the Azure CLI beta ( or Azure PowerShell)? az search service list --resource-group "MyResourceGroup" "name": "???????????-search", "partitionCount": 1, "provisioningState": "succeeded", "replicaCount": 1, "resourceGroup": "MyResourceGroup", "sku": { "name": "basic" }, "status": "running", I can see the "create" command does have the "Sku" parameter but the "update" command does not which is why this doesn't work: az search service update --resource-group "MyResoucegroup" --name ?????????-search --sku free I haven't found a way on the portal either.Solved