Skip to content
Merged
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
165 changes: 104 additions & 61 deletions templates/2025_04/fabric_networking.jsonc
Original file line number Diff line number Diff line change
@@ -1,100 +1,143 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"l3IsolationDomain_name": {
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"l3IsolationDomain_name": {
"type": "string"
},
"networkFabrics_id": {
"type": "string"
},
"external_Uplink_name": {
"type": "string"
},
"networkFabrics_id": {
},
"optionBProperties": {
"type": "object"
},
"l3InternalNetwork_name01": {
"type": "string"
},
"external_Uplink_name": {
"type": "string"
},
"optionBProperties": {
"type": "object"
},
"l3InternalNetwork_name": {
"type": "string"
},
"peerASN": {
"type": "int"
},
"vlanId": {
"type": "int"
},
"ipv4Prefix": {
"type": "string"
},
"ipv6Prefix": {
"type": "string"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.ManagedNetworkFabric/l3IsolationDomains",
"apiVersion": "2023-06-15",
"name": "[parameters('l3IsolationDomain_name')]",
"location": "uksouth",
"properties": {
"redistributeConnectedSubnets": "True",
"redistributeStaticRoutes": "True",
"networkFabricId": "[parameters('networkFabrics_id')]"
}
},
{
"type": "Microsoft.ManagedNetworkFabric/l3IsolationDomains/externalNetworks",
},
"vlanId01": {
"type": "int"
},
"ipv4Prefix01": {
"type": "string"
},
"ipv6Prefix01": {
"type": "string"
},
"l3InternalNetwork_name02": {
"type": "string"
},
"vlanId02": {
"type": "int"
},
"ipv4Prefix02": {
"type": "string"
},
"ipv6Prefix02": {
"type": "string"
},
"location": {
"type": "string"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.ManagedNetworkFabric/l3IsolationDomains",
"apiVersion": "2023-06-15",
"name": "[parameters('l3IsolationDomain_name')]",
"location": "[parameters('location')]",
"properties": {
"redistributeConnectedSubnets": "True",
"redistributeStaticRoutes": "True",
"networkFabricId": "[parameters('networkFabrics_id')]"
}
},
{
"type": "Microsoft.ManagedNetworkFabric/l3IsolationDomains/externalNetworks",
"apiVersion": "2023-06-15",
"name": "[concat(parameters('l3IsolationDomain_name'),'/', parameters('external_Uplink_name'))]",
"dependsOn": [
"[resourceId('Microsoft.ManagedNetworkFabric/l3IsolationDomains', parameters('l3IsolationDomain_name'))]"
],
"properties": {
"peeringOption": "OptionB",
"optionBProperties": "[parameters('optionBProperties')]"
}
},
{
"type": "Microsoft.ManagedNetworkFabric/l3IsolationDomains/internalNetworks",
"apiVersion": "2023-06-15",
"name": "[concat(parameters('l3IsolationDomain_name'),'/', parameters('external_Uplink_name'))]",
"name": "[concat(parameters('l3IsolationDomain_name'),'/', parameters('l3InternalNetwork_name01'))]",
"dependsOn": [
"[resourceId('Microsoft.ManagedNetworkFabric/l3IsolationDomains', parameters('l3IsolationDomain_name'))]"
],
"properties": {
"peeringOption": "OptionB",
"optionBProperties": "[parameters('optionBProperties')]"


"vlanId": "[parameters('vlanId01')]",
"mtu": 9000,
"connectedIPv4Subnets": [
{
"prefix": "[parameters('ipv4Prefix01')]"
}
],
"connectedIPv6Subnets": [
{
"prefix": "[parameters('ipv6Prefix01')]"
}
],
"bgpConfiguration": {
"defaultRouteOriginate": "True",
"allowAS": 2,
"allowASOverride": "Unknown",
"peerASN": 65431,
"ipv4ListenRangePrefixes": [
"[parameters('ipv4Prefix01')]"
],
"ipv6ListenRangePrefixes": [
"[parameters('ipv6Prefix01')]"
]
},
"isMonitoringEnabled": "False",
"extension": "NoExtension"
}
},
{
"type": "Microsoft.ManagedNetworkFabric/l3IsolationDomains/internalNetworks",
"apiVersion": "2023-06-15",
"name": "[concat(parameters('l3IsolationDomain_name'),'/', parameters('l3InternalNetwork_name'))]",
"name": "[concat(parameters('l3IsolationDomain_name'),'/', parameters('l3InternalNetwork_name02'))]",
"dependsOn": [
"[resourceId('Microsoft.ManagedNetworkFabric/l3IsolationDomains', parameters('l3IsolationDomain_name'))]"
],
"properties": {
"vlanId": "[parameters('vlanId')]",
"vlanId": "[parameters('vlanId02')]",
"mtu": 9000,
"connectedIPv4Subnets": [
{
"prefix": "[parameters('ipv4Prefix')]"
"prefix": "[parameters('ipv4Prefix02')]"
}
],
"connectedIPv6Subnets": [
{
"prefix": "[parameters('ipv6Prefix')]"
"prefix": "[parameters('ipv6Prefix02')]"
}
],
"bgpConfiguration": {
"defaultRouteOriginate": "True",
"allowAS": 2,
"allowASOverride": "Unknown",
"peerASN": "[parameters('peerASN')]",
"peerASN": 65431,
"ipv4ListenRangePrefixes": [
"[parameters('ipv4Prefix')]"
"[parameters('ipv4Prefix02')]"
],
"ipv6ListenRangePrefixes": [
"[parameters('ipv6Prefix')]"
"[parameters('ipv6Prefix02')]"
]
},
"isMonitoringEnabled": "False",
"extension": "NoExtension"
}
}



]
}
]
}
90 changes: 51 additions & 39 deletions templates/2025_04/fabric_networking.parameters.jsonc
Original file line number Diff line number Diff line change
@@ -1,40 +1,52 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"l3IsolationDomain_name": { // Provide a name for the isolation domain
"value": ""
},
"networkFabrics_id": { // Provide the appropriate network fabric resource ID for the instance
"value": ""
},
"external_Uplink_name": { // Provide a name for the external network uplink
"value": ""
},
"peerASN": { // This value may be adjusted as needed for peer advertisements, do not change unless instructed
"value": 65227
},
"optionBProperties": { // These values are specific to uplink configuration, do not change unless instructed
"value": {
"importRouteTargets": [
"65129:58"
],
"exportRouteTargets": [
"65021:20053"
]
}
},
"l3InternalNetwork_name": { // Provide a name for the internal network
"value": ""
},
"vlanId": { // Provide a VLAN ID that is unique on the instance
"value": 9999
},
"ipv4Prefix": { // Provide an ipv4 prefix that is unique on the instance
"value": ""
},
"ipv6Prefix": { // Provide an ipv6 prefix that is unique on the instance
"value": ""
}
}
}
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"l3IsolationDomain_name": { // Provide a name for the isolation domain
"value": "ALRS-ISDL3"
},
"networkFabrics_id": { // Provide the appropriate network fabric resource ID for the instance
"value": "/subscriptions/fca2e8ee-1179-48b8-9532-428ed0873a2e/resourceGroups/dev10nfrg04112025/providers/Microsoft.ManagedNetworkFabric/networkFabrics/dev10nf0411"
},
"external_Uplink_name": { // Provide a name for the external network uplink
"value": "ALRS-OptionB-BSD-test"
},
"optionBProperties": { // These values are specific to uplink configuration, do not change unless instructed
"value": {
"importRouteTargets": [
"65129:58"
],
"exportRouteTargets": [
"65021:20053"
]
}
},
"l3InternalNetwork_name01": { // Provide a name for the internal network
"value": "oam"
},
"vlanId01": { // Provide a VLAN ID that is unique on the instance
"value": 2050
},
"ipv4Prefix01": { // Provide an ipv4 prefix that is unique on the instance
"value": "10.131.16.0/24"
},
"ipv6Prefix01": { // Provide an ipv6 prefix that is unique on the instance
"value": "fda0:d59c:ea0a:10::/64"
},
"l3InternalNetwork_name02": { // Provide a name for the internal network
"value": "appdata"
},
"vlanId02": { // Provide a VLAN ID that is unique on the instance
"value": 2051
},
"ipv4Prefix02": { // Provide an ipv4 prefix that is unique on the instance
"value": "10.131.17.0/24"
},
"ipv6Prefix02": { // Provide an ipv6 prefix that is unique on the instance
"value": "fda0:d59c:ea0a:11::/64"
},
"location": {
"value": "eastus" // Provide the location for the instance
}
}
}
Loading