Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ param existingDnsZones = {
'privatelink.search.windows.net': ''
'privatelink.blob.core.windows.net': ''
'privatelink.documents.azure.com': ''
'privatelink.azurecr.io': ''
'privatelink.azure-api.net': ''
}

Expand All @@ -44,6 +45,7 @@ param dnsZoneNames = [
'privatelink.search.windows.net'
'privatelink.blob.core.windows.net'
'privatelink.documents.azure.com'
'privatelink.azurecr.io'
'privatelink.azure-api.net'
]

Expand All @@ -54,4 +56,3 @@ param dnsZoneNames = [
param vnetAddressPrefix = ''
param agentSubnetPrefix = ''
param peSubnetPrefix = ''

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2025-04-01-preview' = {
}
] : null )
// Set disable local auth to true or false. Agent service does not support API key based authentication
disableLocalAuth: false
disableLocalAuth: true
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ param existingDnsZones = {
'privatelink.cognitiveservices.azure.com': ''
'privatelink.search.windows.net': ''
'privatelink.blob.core.windows.net': ''
'privatelink.documents.azure.com': ''
'privatelink.documents.azure.com': ''
'privatelink.azurecr.io': ''
}

//DNSZones names for validating if they exist
Expand All @@ -41,6 +42,7 @@ param dnsZoneNames = [
'privatelink.search.windows.net'
'privatelink.blob.core.windows.net'
'privatelink.documents.azure.com'
'privatelink.azurecr.io'
]


Expand All @@ -67,4 +69,3 @@ param dnsZoneNames = [
param vnetAddressPrefix = ''
param agentSubnetPrefix = ''
param peSubnetPrefix = ''

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2025-04-01-preview' = {
}
] : null )
// Set disable local auth to true or false. Agent service does not support API key based authentication
disableLocalAuth: false
disableLocalAuth: true
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2025-10-01-preview' = {
useMicrosoftManagedNetwork: true
}
]
disableLocalAuth: false
disableLocalAuth: true
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,6 @@ param existingDnsZones = {
'privatelink.search.windows.net': { subscriptionId: '', resourceGroup: '' }
'privatelink.blob.core.windows.net': { subscriptionId: '', resourceGroup: '' }
'privatelink.documents.azure.com': { subscriptionId: '', resourceGroup: '' }
'privatelink.azurecr.io': { subscriptionId: '', resourceGroup: '' }
'privatelink.fabric.microsoft.com': { subscriptionId: '', resourceGroup: '' }
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource account 'Microsoft.CognitiveServices/accounts@2025-04-01-preview' = {
}
]
: null)
disableLocalAuth: false
disableLocalAuth: true
}
}

Expand Down
Loading