Skip to content

Commit ba49598

Browse files
Merge pull request #276023 from HeidiSteen/heidist-features
[azure search] TLS 1.3 support
2 parents 3a02fb3 + e4658e2 commit ba49598

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

articles/search/search-security-overview.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Azure AI Search has three basic network traffic patterns:
3131

3232
Inbound requests that target a search service endpoint include:
3333

34-
+ Create, read, update or delete objects on the search service
34+
+ Create, read, update, or delete objects on the search service
3535
+ Load an index with search documents
3636
+ Query an index
3737
+ Trigger indexer or skillset execution
@@ -68,7 +68,7 @@ The following list is a full enumeration of the outbound requests for which you
6868
| Custom skills | Connect to Azure functions, Azure web apps, or other apps running external code that's hosted off-service. The request for external processing is sent during skillset execution. |
6969
| Indexers and [integrated vectorization](vector-search-integrated-vectorization.md) | Connect to Azure OpenAI and a deployed embedding model, or it goes through a custom skill to connect to an embedding model that you provide. The search service sends text to embedding models for vectorization during indexing. |
7070
| Vectorizers | Connect to Azure OpenAI or other embedding models at query time to [convert user text strings to vectors](vector-search-how-to-configure-vectorizer.md) for vector search. |
71-
| Search service | Connect to Azure Key Vault for [customer-managed encyrption keys](search-security-manage-encryption-keys.md), used to encrypt and decrypt sensitive data. |
71+
| Search service | Connect to Azure Key Vault for [customer-managed encryption keys](search-security-manage-encryption-keys.md) used to encrypt and decrypt sensitive data. |
7272

7373
Outbound connections can be made using a resource's full access connection string that includes a key or a database login, or [a managed identity](search-howto-managed-identities-data-sources.md) if you're using Microsoft Entra ID and role-based access.
7474

@@ -142,7 +142,7 @@ Content management refers to the objects created and hosted on a search service.
142142

143143
+ For role-based authorization, [use Azure role assignments](search-security-rbac.md) to establish read-write access to operations.
144144

145-
+ For key-based authorization, [an API key](search-security-api-keys.md) and a qualified endpoint determine access. An endpoint might be the service itself, the indexes collection, a specific index, a documents collection, or a specific document. When chained together, the endpoint, the operation (for example, a create or update request) and the type of key (admin or query) authorize access to content and operations.
145+
+ For key-based authorization, [an API key](search-security-api-keys.md) and a qualified endpoint determine access. An endpoint might be the service itself, the indexes collection, a specific index, a documents collection, or a specific document. When chained together, the endpoint, the operation (for example, a create request) and the type of key (admin or query) authorize access to content and operations.
146146

147147
### Restricting access to indexes
148148

@@ -189,7 +189,13 @@ Optionally, you can add customer-managed keys (CMK) for supplemental encryption
189189

190190
### Data in transit
191191

192-
In Azure AI Search, encryption starts with connections and transmissions. For search services on the public internet, Azure AI Search listens on HTTPS port 443. All client-to-service connections use TLS 1.2 encryption. Earlier versions (1.0 or 1.1) aren't supported.
192+
In Azure AI Search, encryption starts with connections and transmissions. For search services on the public internet, Azure AI Search listens on HTTPS port 443.
193+
194+
+ All client-to-service connections use TLS 1.2 encryption by default.
195+
196+
+ You can [file a support ticket](/azure/azure-portal/supportability/how-to-create-azure-support-request) to use TLS 1.3 instead.
197+
198+
Earlier versions (1.0 or 1.1) aren't supported.
193199

194200
### Data at rest
195201

articles/search/search-sku-tier.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
---
22
title: Choose a service tier
33
titleSuffix: Azure AI Search
4-
description: 'Learn about the service tiers (or SKUs) for Azure AI Search. A search service can be provisioned at these tiers: Free, Basic, and Standard. Standard is available in various resource configurations and capacity levels.'
4+
description: 'Learn about the service tiers (or SKUs) for Azure AI Search. A search service can be provisioned at these tiers: Free, Basic, Standard, and Storage Optimized. Standard is available in various resource configurations and capacity levels.'
55

66
manager: nitinme
77
author: HeidiSteen
88
ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 04/04/2024
12-
ms.custom:
13-
- ignite-2023
11+
ms.date: 05/22/2024
12+
1413
---
1514

1615
# Choose a service tier for Azure AI Search
1716

18-
Part of [creating a search service](search-create-service-portal.md) is choosing a pricing tier (or SKU) that's fixed for the lifetime of the service. In the portal, tier is specified in the **Select Pricing Tier** page when you create the service. If you're provisioning through PowerShell or Azure CLI instead, the tier is specified through the **`-Sku`** parameter
17+
Part of [creating a search service](search-create-service-portal.md) is choosing a pricing tier (or SKU) that's fixed for the lifetime of the service. In the portal, tier is specified in the **Select Pricing Tier** page when you create the service. In PowerShell or Azure CLI, the tier is specified through the **`-Sku`** parameter.
1918

20-
The tier you select determines:
19+
The tier determines:
2120

2221
+ Maximum number of indexes and other objects allowed on the service
2322
+ Size and speed of partitions (physical storage)
2423
+ Billable rate as a fixed monthly cost, but also an incremental cost if you add capacity
2524

2625
In a few instances, the tier you choose determines the availability of [premium features](#premium-features).
2726

28-
Pricing - or the estimated monthly cost of running the service - are shown in the portal's **Select Pricing Tier** page. You should check [service pricing](https://azure.microsoft.com/pricing/details/search/) to learn about estimated costs.
27+
Billing rates are shown in the portal's **Select Pricing Tier** page. You can check the [pricing page](https://azure.microsoft.com/pricing/details/search/) for regional rates and review [Plan and manage costs](search-sku-manage-costs.md) to learn more about the billing model.
2928

3029
> [!NOTE]
3130
> Search services created after April 3, 2024 have larger partitions and higher vector quotas at almost every tier. For more information, see [service limits](search-limits-quotas-capacity.md#after-april-3-2024).
@@ -36,9 +35,9 @@ Tiers include **Free**, **Basic**, **Standard**, and **Storage Optimized**. Stan
3635

3736
:::image type="content" source="media/search-sku-tier/tiers.png" alt-text="Pricing tier chart" border="true":::
3837

39-
**Free** creates a [limited search service](search-limits-quotas-capacity.md#subscription-limits) for smaller projects, like running tutorials and code samples. Internally, system resources are shared among multiple subscribers. You can't scale a free service or run significant workloads. You can only have one free search service per Azure subscription.
38+
**Free** creates a [limited search service](search-limits-quotas-capacity.md#subscription-limits) for smaller projects, like running tutorials and code samples. Internally, system resources are shared among multiple subscribers. You can't scale a free service, run significant workloads, and some premium features aren't available. You can only have one free search service per Azure subscription.
4039

41-
The most commonly used billable tiers include the following:
40+
The most commonly used billable tiers include:
4241

4342
+ **Basic** has the ability to meet SLA with its support for three replicas.
4443

@@ -73,7 +72,7 @@ Resource-intensive features might not work well unless you give it sufficient ca
7372

7473
## Upper limits
7574

76-
Tiers determine the maximum storage of the service itself, as well as the maximum number of indexes, indexers, data sources, skillsets, and synonym maps that you can create. For a full break out of all limits, see [Service limits in Azure AI Search](search-limits-quotas-capacity.md).
75+
Tiers determine the maximum storage of the service itself, plus the maximum number of indexes, indexers, data sources, skillsets, and synonym maps that you can create. For a full break out of all limits, see [Service limits in Azure AI Search](search-limits-quotas-capacity.md).
7776

7877
## Partition size and speed
7978

0 commit comments

Comments
 (0)