Bicep resource definition
The expressRouteGateways resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Network/expressRouteGateways resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Network/expressRouteGateways@2020-05-01' = {
location: 'string'
name: 'string'
properties: {
autoScaleConfiguration: {
bounds: {
max: int
min: int
}
}
virtualHub: {
id: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Network/expressRouteGateways
Name |
Description |
Value |
location |
Resource location. |
string |
name |
The resource name |
string (required) |
properties |
Properties of the express route gateway. |
ExpressRouteGatewayProperties |
tags |
Resource tags |
Dictionary of tag names and values. See Tags in templates |
ExpressRouteGatewayProperties
ExpressRouteGatewayPropertiesAutoScaleConfiguration
ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
Name |
Description |
Value |
max |
Maximum number of scale units deployed for ExpressRoute gateway. |
int |
min |
Minimum number of scale units deployed for ExpressRoute gateway. |
int |
VirtualHubId
Name |
Description |
Value |
id |
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription. |
string |
Usage Examples
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
ARM template resource definition
The expressRouteGateways resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Network/expressRouteGateways resource, add the following JSON to your template.
{
"type": "Microsoft.Network/expressRouteGateways",
"apiVersion": "2020-05-01",
"name": "string",
"location": "string",
"properties": {
"autoScaleConfiguration": {
"bounds": {
"max": "int",
"min": "int"
}
},
"virtualHub": {
"id": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Network/expressRouteGateways
Name |
Description |
Value |
apiVersion |
The api version |
'2020-05-01' |
location |
Resource location. |
string |
name |
The resource name |
string (required) |
properties |
Properties of the express route gateway. |
ExpressRouteGatewayProperties |
tags |
Resource tags |
Dictionary of tag names and values. See Tags in templates |
type |
The resource type |
'Microsoft.Network/expressRouteGateways' |
ExpressRouteGatewayProperties
ExpressRouteGatewayPropertiesAutoScaleConfiguration
ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
Name |
Description |
Value |
max |
Maximum number of scale units deployed for ExpressRoute gateway. |
int |
min |
Minimum number of scale units deployed for ExpressRoute gateway. |
int |
VirtualHubId
Name |
Description |
Value |
id |
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription. |
string |
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
The expressRouteGateways resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Network/expressRouteGateways resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/expressRouteGateways@2020-05-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
autoScaleConfiguration = {
bounds = {
max = int
min = int
}
}
virtualHub = {
id = "string"
}
}
}
}
Property Values
Microsoft.Network/expressRouteGateways
Name |
Description |
Value |
location |
Resource location. |
string |
name |
The resource name |
string (required) |
properties |
Properties of the express route gateway. |
ExpressRouteGatewayProperties |
tags |
Resource tags |
Dictionary of tag names and values. |
type |
The resource type |
"Microsoft.Network/expressRouteGateways@2020-05-01" |
ExpressRouteGatewayProperties
ExpressRouteGatewayPropertiesAutoScaleConfiguration
ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
Name |
Description |
Value |
max |
Maximum number of scale units deployed for ExpressRoute gateway. |
int |
min |
Minimum number of scale units deployed for ExpressRoute gateway. |
int |
VirtualHubId
Name |
Description |
Value |
id |
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription. |
string |