We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d735ce commit 34a12aeCopy full SHA for 34a12ae
infra/core/ai/cognitiveservices.bicep
@@ -4,6 +4,7 @@ param location string = resourceGroup().location
4
param tags object = {}
5
@description('The custom subdomain name used to access the API. Defaults to the value of the name parameter.')
6
param customSubDomainName string = name
7
+param disableLocalAuth bool = false
8
param deployments array = []
9
param kind string = 'OpenAI'
10
@@ -30,6 +31,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-05-01' = {
30
31
customSubDomainName: customSubDomainName
32
publicNetworkAccess: publicNetworkAccess
33
networkAcls: networkAcls
34
+ disableLocalAuth: disableLocalAuth
35
}
36
sku: sku
37
0 commit comments