Skip to content

Commit 4324e72

Browse files
committed
force disableLocalAuth to true
1 parent f2ae7da commit 4324e72

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

infra/core/ai/cognitiveservices.bicep

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ param location string = resourceGroup().location
44
param tags object = {}
55
@description('The custom subdomain name used to access the API. Defaults to the value of the name parameter.')
66
param customSubDomainName string = name
7-
param disableLocalAuth bool = false
87
param deployments array = []
98
param kind string = 'OpenAI'
109

@@ -34,7 +33,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-05-01' = {
3433
customSubDomainName: customSubDomainName
3534
publicNetworkAccess: publicNetworkAccess
3635
networkAcls: networkAcls
37-
disableLocalAuth: disableLocalAuth
36+
disableLocalAuth: true
3837
}
3938
sku: sku
4039
}

0 commit comments

Comments
 (0)