We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages an ExpressRoute circuit.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleExpressRouteCircuit = new Azure.Network.ExpressRouteCircuit("exampleExpressRouteCircuit", new Azure.Network.ExpressRouteCircuitArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
ServiceProviderName = "Equinix",
PeeringLocation = "Silicon Valley",
BandwidthInMbps = 50,
Sku = new Azure.Network.Inputs.ExpressRouteCircuitSkuArgs
{
Tier = "Standard",
Family = "MeteredData",
},
Tags =
{
{ "environment", "Production" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = network.NewExpressRouteCircuit(ctx, "exampleExpressRouteCircuit", &network.ExpressRouteCircuitArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
ServiceProviderName: pulumi.String("Equinix"),
PeeringLocation: pulumi.String("Silicon Valley"),
BandwidthInMbps: pulumi.Int(50),
Sku: &network.ExpressRouteCircuitSkuArgs{
Tier: pulumi.String("Standard"),
Family: pulumi.String("MeteredData"),
},
Tags: pulumi.StringMap{
"environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleExpressRouteCircuit = new azure.network.ExpressRouteCircuit("exampleExpressRouteCircuit", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
serviceProviderName: "Equinix",
peeringLocation: "Silicon Valley",
bandwidthInMbps: 50,
sku: {
tier: "Standard",
family: "MeteredData",
},
tags: {
environment: "Production",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_express_route_circuit = azure.network.ExpressRouteCircuit("exampleExpressRouteCircuit",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
service_provider_name="Equinix",
peering_location="Silicon Valley",
bandwidth_in_mbps=50,
sku=azure.network.ExpressRouteCircuitSkuArgs(
tier="Standard",
family="MeteredData",
),
tags={
"environment": "Production",
})
Example coming soon!
Create ExpressRouteCircuit Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExpressRouteCircuit(name: string, args: ExpressRouteCircuitArgs, opts?: CustomResourceOptions);@overload
def ExpressRouteCircuit(resource_name: str,
args: ExpressRouteCircuitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExpressRouteCircuit(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku: Optional[ExpressRouteCircuitSkuArgs] = None,
allow_classic_operations: Optional[bool] = None,
bandwidth_in_gbps: Optional[float] = None,
bandwidth_in_mbps: Optional[int] = None,
express_route_port_id: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
peering_location: Optional[str] = None,
service_provider_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewExpressRouteCircuit(ctx *Context, name string, args ExpressRouteCircuitArgs, opts ...ResourceOption) (*ExpressRouteCircuit, error)public ExpressRouteCircuit(string name, ExpressRouteCircuitArgs args, CustomResourceOptions? opts = null)
public ExpressRouteCircuit(String name, ExpressRouteCircuitArgs args)
public ExpressRouteCircuit(String name, ExpressRouteCircuitArgs args, CustomResourceOptions options)
type: azure:network:ExpressRouteCircuit
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ExpressRouteCircuitArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ExpressRouteCircuitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ExpressRouteCircuitArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExpressRouteCircuitArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExpressRouteCircuitArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var expressRouteCircuitResource = new Azure.Network.ExpressRouteCircuit("expressRouteCircuitResource", new()
{
ResourceGroupName = "string",
Sku = new Azure.Network.Inputs.ExpressRouteCircuitSkuArgs
{
Family = "string",
Tier = "string",
},
AllowClassicOperations = false,
BandwidthInGbps = 0,
BandwidthInMbps = 0,
ExpressRoutePortId = "string",
Location = "string",
Name = "string",
PeeringLocation = "string",
ServiceProviderName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := network.NewExpressRouteCircuit(ctx, "expressRouteCircuitResource", &network.ExpressRouteCircuitArgs{
ResourceGroupName: pulumi.String("string"),
Sku: &network.ExpressRouteCircuitSkuArgs{
Family: pulumi.String("string"),
Tier: pulumi.String("string"),
},
AllowClassicOperations: pulumi.Bool(false),
BandwidthInGbps: pulumi.Float64(0),
BandwidthInMbps: pulumi.Int(0),
ExpressRoutePortId: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
PeeringLocation: pulumi.String("string"),
ServiceProviderName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var expressRouteCircuitResource = new ExpressRouteCircuit("expressRouteCircuitResource", ExpressRouteCircuitArgs.builder()
.resourceGroupName("string")
.sku(ExpressRouteCircuitSkuArgs.builder()
.family("string")
.tier("string")
.build())
.allowClassicOperations(false)
.bandwidthInGbps(0.0)
.bandwidthInMbps(0)
.expressRoutePortId("string")
.location("string")
.name("string")
.peeringLocation("string")
.serviceProviderName("string")
.tags(Map.of("string", "string"))
.build());
express_route_circuit_resource = azure.network.ExpressRouteCircuit("expressRouteCircuitResource",
resource_group_name="string",
sku={
"family": "string",
"tier": "string",
},
allow_classic_operations=False,
bandwidth_in_gbps=0,
bandwidth_in_mbps=0,
express_route_port_id="string",
location="string",
name="string",
peering_location="string",
service_provider_name="string",
tags={
"string": "string",
})
const expressRouteCircuitResource = new azure.network.ExpressRouteCircuit("expressRouteCircuitResource", {
resourceGroupName: "string",
sku: {
family: "string",
tier: "string",
},
allowClassicOperations: false,
bandwidthInGbps: 0,
bandwidthInMbps: 0,
expressRoutePortId: "string",
location: "string",
name: "string",
peeringLocation: "string",
serviceProviderName: "string",
tags: {
string: "string",
},
});
type: azure:network:ExpressRouteCircuit
properties:
allowClassicOperations: false
bandwidthInGbps: 0
bandwidthInMbps: 0
expressRoutePortId: string
location: string
name: string
peeringLocation: string
resourceGroupName: string
serviceProviderName: string
sku:
family: string
tier: string
tags:
string: string
ExpressRouteCircuit Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ExpressRouteCircuit resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- Sku
Express
Route Circuit Sku - A
skublock for the ExpressRoute circuit as documented below. - Allow
Classic boolOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - Bandwidth
In doubleGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- Bandwidth
In intMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- Express
Route stringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Peering
Location string - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- Service
Provider stringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Resource
Group stringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- Sku
Express
Route Circuit Sku Args - A
skublock for the ExpressRoute circuit as documented below. - Allow
Classic boolOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - Bandwidth
In float64Gbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- Bandwidth
In intMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- Express
Route stringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Peering
Location string - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- Service
Provider stringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- resource
Group StringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- sku
Express
Route Circuit Sku - A
skublock for the ExpressRoute circuit as documented below. - allow
Classic BooleanOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth
In DoubleGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth
In IntegerMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express
Route StringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering
Location String - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- service
Provider StringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- resource
Group stringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- sku
Express
Route Circuit Sku - A
skublock for the ExpressRoute circuit as documented below. - allow
Classic booleanOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth
In numberGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth
In numberMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express
Route stringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering
Location string - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- service
Provider stringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- resource_
group_ strname - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- sku
Express
Route Circuit Sku Args - A
skublock for the ExpressRoute circuit as documented below. - allow_
classic_ booloperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth_
in_ floatgbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth_
in_ intmbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express_
route_ strport_ id - The ID of the Express Route Port this Express Route Circuit is based on.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering_
location str - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- service_
provider_ strname - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- resource
Group StringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- sku Property Map
- A
skublock for the ExpressRoute circuit as documented below. - allow
Classic BooleanOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth
In NumberGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth
In NumberMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express
Route StringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering
Location String - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- service
Provider StringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExpressRouteCircuit resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Key string - The string needed by the service provider to provision the ExpressRoute circuit.
- Service
Provider stringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Key string - The string needed by the service provider to provision the ExpressRoute circuit.
- Service
Provider stringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- id String
- The provider-assigned unique ID for this managed resource.
- service
Key String - The string needed by the service provider to provision the ExpressRoute circuit.
- service
Provider StringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- id string
- The provider-assigned unique ID for this managed resource.
- service
Key string - The string needed by the service provider to provision the ExpressRoute circuit.
- service
Provider stringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- id str
- The provider-assigned unique ID for this managed resource.
- service_
key str - The string needed by the service provider to provision the ExpressRoute circuit.
- service_
provider_ strprovisioning_ state - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- id String
- The provider-assigned unique ID for this managed resource.
- service
Key String - The string needed by the service provider to provision the ExpressRoute circuit.
- service
Provider StringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
Look up Existing ExpressRouteCircuit Resource
Get an existing ExpressRouteCircuit resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ExpressRouteCircuitState, opts?: CustomResourceOptions): ExpressRouteCircuit@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_classic_operations: Optional[bool] = None,
bandwidth_in_gbps: Optional[float] = None,
bandwidth_in_mbps: Optional[int] = None,
express_route_port_id: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
peering_location: Optional[str] = None,
resource_group_name: Optional[str] = None,
service_key: Optional[str] = None,
service_provider_name: Optional[str] = None,
service_provider_provisioning_state: Optional[str] = None,
sku: Optional[ExpressRouteCircuitSkuArgs] = None,
tags: Optional[Mapping[str, str]] = None) -> ExpressRouteCircuitfunc GetExpressRouteCircuit(ctx *Context, name string, id IDInput, state *ExpressRouteCircuitState, opts ...ResourceOption) (*ExpressRouteCircuit, error)public static ExpressRouteCircuit Get(string name, Input<string> id, ExpressRouteCircuitState? state, CustomResourceOptions? opts = null)public static ExpressRouteCircuit get(String name, Output<String> id, ExpressRouteCircuitState state, CustomResourceOptions options)resources: _: type: azure:network:ExpressRouteCircuit get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Allow
Classic boolOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - Bandwidth
In doubleGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- Bandwidth
In intMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- Express
Route stringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Peering
Location string - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- Service
Key string - The string needed by the service provider to provision the ExpressRoute circuit.
- Service
Provider stringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- Service
Provider stringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- Sku
Express
Route Circuit Sku - A
skublock for the ExpressRoute circuit as documented below. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Allow
Classic boolOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - Bandwidth
In float64Gbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- Bandwidth
In intMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- Express
Route stringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Peering
Location string - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- Service
Key string - The string needed by the service provider to provision the ExpressRoute circuit.
- Service
Provider stringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- Service
Provider stringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- Sku
Express
Route Circuit Sku Args - A
skublock for the ExpressRoute circuit as documented below. - map[string]string
- A mapping of tags to assign to the resource.
- allow
Classic BooleanOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth
In DoubleGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth
In IntegerMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express
Route StringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering
Location String - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- service
Key String - The string needed by the service provider to provision the ExpressRoute circuit.
- service
Provider StringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- service
Provider StringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- sku
Express
Route Circuit Sku - A
skublock for the ExpressRoute circuit as documented below. - Map<String,String>
- A mapping of tags to assign to the resource.
- allow
Classic booleanOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth
In numberGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth
In numberMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express
Route stringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering
Location string - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- service
Key string - The string needed by the service provider to provision the ExpressRoute circuit.
- service
Provider stringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- service
Provider stringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- sku
Express
Route Circuit Sku - A
skublock for the ExpressRoute circuit as documented below. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- allow_
classic_ booloperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth_
in_ floatgbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth_
in_ intmbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express_
route_ strport_ id - The ID of the Express Route Port this Express Route Circuit is based on.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering_
location str - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- service_
key str - The string needed by the service provider to provision the ExpressRoute circuit.
- service_
provider_ strname - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- service_
provider_ strprovisioning_ state - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- sku
Express
Route Circuit Sku Args - A
skublock for the ExpressRoute circuit as documented below. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- allow
Classic BooleanOperations - Allow the circuit to interact with classic (RDFE) resources. Defaults to
false. - bandwidth
In NumberGbps - The bandwidth in Gbps of the circuit being created on the Express Route Port.
- bandwidth
In NumberMbps - The bandwidth in Mbps of the circuit being created on the Service Provider.
- express
Route StringPort Id - The ID of the Express Route Port this Express Route Circuit is based on.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- peering
Location String - The name of the peering location and not the Azure resource location. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- service
Key String - The string needed by the service provider to provision the ExpressRoute circuit.
- service
Provider StringName - The name of the ExpressRoute Service Provider. Changing this forces a new resource to be created.
- service
Provider StringProvisioning State - The ExpressRoute circuit provisioning state from your chosen service provider. Possible values are "NotProvisioned", "Provisioning", "Provisioned", and "Deprovisioning".
- sku Property Map
- A
skublock for the ExpressRoute circuit as documented below. - Map<String>
- A mapping of tags to assign to the resource.
Supporting Types
ExpressRouteCircuitSku, ExpressRouteCircuitSkuArgs
Import
ExpressRoute circuits can be imported using the resource id, e.g.
$ pulumi import azure:network/expressRouteCircuit:ExpressRouteCircuit myExpressRoute /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/expressRouteCircuits/myExpressRoute
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
