Skip to content

Commit 985b25d

Browse files
authored
Merge pull request #188666 from HeidiSteen/heidist-fresh2
Ported one more article
2 parents 3e5ef8d + c307893 commit 985b25d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/search/search-howto-managed-identities-data-sources.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Create a managed identity
2+
title: Connect using a managed identity
33
titleSuffix: Azure Cognitive Search
4-
description: Create a managed identity for your search service for Azure Active Directory authentication to other cloud services.
4+
description: Create a managed identity for your search service and use Azure Active Directory authentication and role-based-access controls for connections to other cloud services.
55

66
manager: nitinme
77
author: HeidiSteen
@@ -211,7 +211,7 @@ The following steps are for Azure Storage. If your resource is Cosmos DB or Azur
211211
212212
Once a managed identity is defined and given a role assignment, outbound connections use it in connection strings. Here are some examples of connection strings for various scenarios.
213213
214-
**Blob data source (system):**
214+
[**Blob data source (system):**](search-howto-managed-identities-storage.md)
215215
216216
An indexer data source includes a "credentials" property that determines how the connection is made to the data source. The following example shows a connection string that uses a system managed identity. Notice that the connection string doesn't include a container. In a data source definition, a container name is specified in the "container" property (not shown), not the connection string.
217217
@@ -221,7 +221,7 @@ An indexer data source includes a "credentials" property that determines how the
221221
}
222222
```
223223

224-
**Blob data source (user):**
224+
[**Blob data source (user):**](search-howto-managed-identities-storage.md)
225225

226226
A user-assigned managed identity is a preview feature. It's specified in an additional "identity" property, currently only supported for indexer data sources. You can use either the portal or the REST API preview version 2021-04-30-Preview to create an indexer data source that supports a user-assigned managed identity.
227227

@@ -236,7 +236,7 @@ A user-assigned managed identity is a preview feature. It's specified in an addi
236236
}
237237
```
238238

239-
**Knowledge store:**
239+
[**Knowledge store:**](knowledge-store-create-rest.md)
240240

241241
A knowledge store definition includes a connection string to Azure Storage. On Azure Storage, a knowledge store will create projections as blobs and tables. The connection string is a straightforward connection to Azure Storage. Notice that the string does not include containers or tables in the path. These are defined in the embedded projection definition, not the connection string.
242242

@@ -245,7 +245,7 @@ A knowledge store definition includes a connection string to Azure Storage. On A
245245
"storageConnectionString": "ResourceId=/subscriptions/{subscription-ID}/resourceGroups/{resource-group-name}/providers/Microsoft.Storage/storageAccounts/storage-account-name};",
246246
```
247247

248-
**Enrichment cache:**
248+
[**Enrichment cache:**](search-howto-incremental-index.md)
249249

250250
An indexer creates, uses, and remembers the container used for the cached enrichments. It's not necessary to include the container in the cache connection string. You can find the object ID on the **Identity** page of your search service in the portal.
251251

@@ -257,7 +257,7 @@ An indexer creates, uses, and remembers the container used for the cached enrich
257257
},
258258
```
259259

260-
**Debug session:**
260+
[**Debug session:**](cognitive-search-debug-session.md)
261261

262262
A debug session targets a container. Be sure to include the name of an existing container in the connection string. You can paste a string similar to the following example in the debug session that you start up in the portal.
263263

0 commit comments

Comments
 (0)