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 f2ae7da commit 4324e72Copy full SHA for 4324e72
infra/core/ai/cognitiveservices.bicep
@@ -4,7 +4,6 @@ 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
@@ -34,7 +33,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-05-01' = {
34
33
customSubDomainName: customSubDomainName
35
publicNetworkAccess: publicNetworkAccess
36
networkAcls: networkAcls
37
- disableLocalAuth: disableLocalAuth
+ disableLocalAuth: true
38
}
39
sku: sku
40
0 commit comments