File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"azureCloud" : {
3
+ "aiSearch" : " privatelink.search.azure.com" ,
3
4
"azureMonitor" : [
4
5
" privatelink.monitor.azure.com" ,
5
6
" privatelink.oms.opinsights.azure.com" ,
6
7
" privatelink.agentsvc.azure-automation.net" ,
7
8
" privatelink.ods.opinsights.azure.com"
8
- ]
9
+ ],
10
+ "cosmosDB" : " privatelink.documents.azure.com"
9
11
},
10
12
"azureusgovernment" : {
13
+ "aiSearch" : " privatelink.search.azure.us" ,
11
14
"azureMonitor" : [
12
15
" privatelink.monitor.azure.us" ,
13
16
" privatelink.oms.opinsights.azure.us" ,
14
17
" privatelink.agentsvc.azure-automation.us" ,
15
18
" privatelink.ods.opinsights.azure.us"
16
- ]
19
+ ],
20
+ "cosmosDB" : " privatelink.documents.azure.us"
17
21
}
18
22
}
Original file line number Diff line number Diff line change 4
4
@description ('Virtual Network IDs to link to' )
5
5
param linkedVnetIds array
6
6
7
- var aiSearchPrivateDnsZoneName = 'privatelink.search.windows.net'
8
- var blobStoragePrivateDnsZoneName = 'privatelink.blob.${environment ().suffixes .storage }'
9
- var cosmosDbPrivateDnsZoneName = 'privatelink.documents.azure.com'
10
- var storagePrivateDnsZoneNames = [blobStoragePrivateDnsZoneName ]
11
7
var privateDnsZoneData = loadJsonContent ('private-dns-zone-groups.json' )
12
8
var cloudName = toLower (environment ().name )
9
+
10
+ var aiSearchPrivateDnsZoneName = privateDnsZoneData [cloudName ].aiSearch
11
+ var blobStoragePrivateDnsZoneName = 'privatelink.blob.${environment ().suffixes .storage }'
12
+ var cosmosDbPrivateDnsZoneName = privateDnsZoneData [cloudName ].cosmosDb
13
+ var storagePrivateDnsZoneNames = [blobStoragePrivateDnsZoneName ]
13
14
var azureMonitorPrivateDnsZones = privateDnsZoneData [cloudName ].azureMonitor
15
+
14
16
var privateDnsZones = union (
15
17
azureMonitorPrivateDnsZones ,
16
18
storagePrivateDnsZoneNames ,
You can’t perform that action at this time.
0 commit comments