Skip to content

Commit 76b9729

Browse files
Merge pull request microsoft#285 from microsoft/azd-pipeline
search env added
2 parents ecf9624 + 6deedf0 commit 76b9729

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

infra/deploy_app_service.bicep

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,21 @@ param AzureSearchEnableInDomain string = ''
5656
@description('Azure Search Top K')
5757
param AzureSearchTopK string = ''
5858

59+
@description('Azure Search Query Type')
60+
param AzureSearchQueryType string = ''
61+
5962
@description('Azure Search Index Is Prechunked')
6063
param AzureSearchIndexIsPrechunked string = ''
6164

65+
@description('Azure Search Vector Fields')
66+
param AzureSearchVectorFields string = ''
67+
68+
@description('Azure Search Strictness')
69+
param AzureSearchStrictness string = ''
70+
71+
@description('Azure Search Permitted Groups Field')
72+
param AzureSearchPermittedGroupsField string = ''
73+
6274
@description('Azure Search Content Columns')
6375
param AzureSearchContentColumns string = ''
6476

@@ -179,6 +191,23 @@ resource Website 'Microsoft.Web/sites@2020-06-01' = {
179191
name: 'AZURE_SEARCH_URL_COLUMN'
180192
value: AzureSearchUrlColumn
181193
}
194+
{
195+
name: 'AZURE_SEARCH_QUERY_TYPE'
196+
value: AzureSearchQueryType
197+
}
198+
{
199+
name: 'AZURE_SEARCH_VECTOR_COLUMNS'
200+
value: AzureSearchVectorFields
201+
}
202+
{
203+
name: 'AZURE_SEARCH_PERMITTED_GROUPS_COLUMN'
204+
value: AzureSearchPermittedGroupsField
205+
}
206+
{
207+
name: 'AZURE_SEARCH_STRICTNESS'
208+
value: AzureSearchStrictness
209+
}
210+
182211
{
183212
name: 'AZURE_OPENAI_API_VERSION'
184213
value: azureOpenAIApiVersion

0 commit comments

Comments
 (0)