@@ -95,31 +95,6 @@ param subnets subnetType[] = [
9595 ]
9696 }
9797 }
98- {
99- name : 'administration'
100- addressPrefixes : ['10.0.0.32/27' ]
101- networkSecurityGroup : {
102- name : 'nsg-administration'
103- securityRules : [
104- {
105- name : 'deny-hop-outbound'
106- properties : {
107- access : 'Deny'
108- destinationAddressPrefix : '*'
109- destinationPortRanges : [
110- '22'
111- '3389'
112- ]
113- direction : 'Outbound'
114- priority : 200
115- protocol : 'Tcp'
116- sourceAddressPrefix : 'VirtualNetwork'
117- sourcePortRange : '*'
118- }
119- }
120- ]
121- }
122- }
12398 {
12499 name : 'AzureBastionSubnet' // Required name for Azure Bastion
125100 addressPrefixes : ['10.0.0.64/26' ]
@@ -331,7 +306,6 @@ output subnets subnetOutputType[] = [
331306// Dynamic outputs for individual subnets for backward compatibility
332307output backendSubnetResourceId string = contains (map (subnets , subnet => subnet .name ), 'backend' ) ? virtualNetwork .outputs .subnetResourceIds [indexOf (map (subnets , subnet => subnet .name ), 'backend' )] : ''
333308output containerSubnetResourceId string = contains (map (subnets , subnet => subnet .name ), 'containers' ) ? virtualNetwork .outputs .subnetResourceIds [indexOf (map (subnets , subnet => subnet .name ), 'containers' )] : ''
334- output administrationSubnetResourceId string = contains (map (subnets , subnet => subnet .name ), 'administration' ) ? virtualNetwork .outputs .subnetResourceIds [indexOf (map (subnets , subnet => subnet .name ), 'administration' )] : ''
335309output webserverfarmSubnetResourceId string = contains (map (subnets , subnet => subnet .name ), 'webserverfarm' ) ? virtualNetwork .outputs .subnetResourceIds [indexOf (map (subnets , subnet => subnet .name ), 'webserverfarm' )] : ''
336310output bastionSubnetResourceId string = contains (map (subnets , subnet => subnet .name ), 'AzureBastionSubnet' ) ? virtualNetwork .outputs .subnetResourceIds [indexOf (map (subnets , subnet => subnet .name ), 'AzureBastionSubnet' )] : ''
337311output jumpboxSubnetResourceId string = contains (map (subnets , subnet => subnet .name ), 'jumpbox' ) ? virtualNetwork .outputs .subnetResourceIds [indexOf (map (subnets , subnet => subnet .name ), 'jumpbox' )] : ''
0 commit comments