File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ param location string = resourceGroup().location
4
4
param tags object = {}
5
5
@description ('The custom subdomain name used to access the API. Defaults to the value of the name parameter.' )
6
6
param customSubDomainName string = name
7
+ param disableLocalAuth bool = false
7
8
param deployments array = []
8
9
param kind string = 'OpenAI'
9
10
@@ -30,6 +31,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-05-01' = {
30
31
customSubDomainName : customSubDomainName
31
32
publicNetworkAccess : publicNetworkAccess
32
33
networkAcls : networkAcls
34
+ disableLocalAuth : disableLocalAuth
33
35
}
34
36
sku : sku
35
37
}
Original file line number Diff line number Diff line change @@ -361,6 +361,7 @@ module openAi 'core/ai/cognitiveservices.bicep' = if (isAzureOpenAiHost) {
361
361
name : openAiSkuName
362
362
}
363
363
deployments : openAiDeployments
364
+ disableLocalAuth : true
364
365
}
365
366
}
366
367
You can’t perform that action at this time.
0 commit comments