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 @@ -12,6 +12,7 @@ param publicNetworkAccess string = 'Enabled'
1212param sku object = {
1313 name : 'S0'
1414}
15+ param disableLocalAuth bool = false
1516
1617param allowedIpRules array = []
1718param networkAcls object = empty (allowedIpRules ) ? {
@@ -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 @@ -316,6 +316,7 @@ module openAi 'core/ai/cognitiveservices.bicep' = {
316316 sku : {
317317 name : openAiSkuName
318318 }
319+ disableLocalAuth : true
319320 deployments : [
320321 {
321322 name : chatGptDeploymentName
You can’t perform that action at this time.
0 commit comments