Skip to content

Commit

Permalink
Add support for addressprefix in NVA and enableVirtualRouterRouteProp… (
Browse files Browse the repository at this point in the history
  • Loading branch information
naveenchekuri authored Jul 16, 2020
1 parent 1feef7f commit fc5a94c
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 7 deletions.
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,7 @@ privatedns
privatelinks
privatepreview
projectable
propogation
Protectable
provisioner
provisioningservices
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"bundledScaleUnit": "1",
"marketPlaceVersion": "12.1"
},
"addressPrefix": "192.168.1.0/16",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"bundledScaleUnit": "1",
"marketPlaceVersion": "12.1"
},
"addressPrefix": "192.168.1.0/16",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"bundledScaleUnit": "1",
"marketPlaceVersion": "12.1"
},
"addressPrefix": "192.168.1.0/16",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"bundledScaleUnit": "1",
"marketPlaceVersion": "12.1"
},
"addressPrefix": "192.168.1.0/16",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"
},
Expand Down Expand Up @@ -109,6 +110,7 @@
"bundledScaleUnit": "1",
"marketPlaceVersion": "12.1"
},
"addressPrefix": "192.168.1.0/16",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"bundledScaleUnit": "1",
"marketPlaceVersion": "12.1"
},
"addressPrefix": "192.168.1.0/16",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
},
{
Expand Down Expand Up @@ -118,7 +119,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
}
},
Expand All @@ -63,7 +64,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
"virtualRouterIps": [
"10.10.1.12",
"10.10.1.13"
]
],
"enableVirtualRouterRoutePropogation": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -716,6 +716,11 @@
"description": "Network Virtual Appliance SKU.",
"$ref": "#/definitions/VirtualApplianceSkuProperties"
},
"addressPrefix": {
"type": "string",
"readOnly": true,
"description": "Address Prefix."
},
"bootStrapConfigurationBlobs": {
"type": "array",
"readOnly": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5246,6 +5246,11 @@
"items": {
"type": "string"
}
},
"enableVirtualRouterRoutePropogation": {
"type": "boolean",
"readOnly": false,
"description": "Flag to control route propogation for VirtualRouter hub."
}
},
"description": "Parameters for VirtualHub."
Expand Down

0 comments on commit fc5a94c

Please sign in to comment.