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
44param tags object = {}
55@description ('The custom subdomain name used to access the API. Defaults to the value of the name parameter.' )
66param customSubDomainName string = name
7+ param disableLocalAuth bool = false
78param deployments array = []
89param kind string = 'OpenAI'
910
@@ -30,6 +31,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-05-01' = {
3031 customSubDomainName : customSubDomainName
3132 publicNetworkAccess : publicNetworkAccess
3233 networkAcls : networkAcls
34+ disableLocalAuth : disableLocalAuth
3335 }
3436 sku : sku
3537}
Original file line number Diff line number Diff line change @@ -361,6 +361,7 @@ module openAi 'core/ai/cognitiveservices.bicep' = if (isAzureOpenAiHost) {
361361 name : openAiSkuName
362362 }
363363 deployments : openAiDeployments
364+ disableLocalAuth : true
364365 }
365366}
366367
You can’t perform that action at this time.
0 commit comments