1. Packages
  2. Azure Classic
  3. API Docs
  4. network
  5. ExpressRoutePort

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.network.ExpressRoutePort

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

    Manages a Express Route Port.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West US",
        });
    
        var exampleExpressRoutePort = new Azure.Network.ExpressRoutePort("exampleExpressRoutePort", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            PeeringLocation = "Airtel-Chennai-CLS",
            BandwidthInGbps = 10,
            Encapsulation = "Dot1Q",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/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 US"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewExpressRoutePort(ctx, "exampleExpressRoutePort", &network.ExpressRoutePortArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			PeeringLocation:   pulumi.String("Airtel-Chennai-CLS"),
    			BandwidthInGbps:   pulumi.Int(10),
    			Encapsulation:     pulumi.String("Dot1Q"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.network.ExpressRoutePort;
    import com.pulumi.azure.network.ExpressRoutePortArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West US")
                .build());
    
            var exampleExpressRoutePort = new ExpressRoutePort("exampleExpressRoutePort", ExpressRoutePortArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .peeringLocation("Airtel-Chennai-CLS")
                .bandwidthInGbps(10)
                .encapsulation("Dot1Q")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West US")
    example_express_route_port = azure.network.ExpressRoutePort("exampleExpressRoutePort",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        peering_location="Airtel-Chennai-CLS",
        bandwidth_in_gbps=10,
        encapsulation="Dot1Q")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West US"});
    const exampleExpressRoutePort = new azure.network.ExpressRoutePort("exampleExpressRoutePort", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        peeringLocation: "Airtel-Chennai-CLS",
        bandwidthInGbps: 10,
        encapsulation: "Dot1Q",
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West US
      exampleExpressRoutePort:
        type: azure:network:ExpressRoutePort
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          location: ${exampleResourceGroup.location}
          peeringLocation: Airtel-Chennai-CLS
          bandwidthInGbps: 10
          encapsulation: Dot1Q
    

    Create ExpressRoutePort Resource

    new ExpressRoutePort(name: string, args: ExpressRoutePortArgs, opts?: CustomResourceOptions);
    @overload
    def ExpressRoutePort(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         bandwidth_in_gbps: Optional[int] = None,
                         billing_type: Optional[str] = None,
                         encapsulation: Optional[str] = None,
                         identity: Optional[ExpressRoutePortIdentityArgs] = None,
                         link1: Optional[ExpressRoutePortLink1Args] = None,
                         link2: Optional[ExpressRoutePortLink2Args] = None,
                         location: Optional[str] = None,
                         name: Optional[str] = None,
                         peering_location: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None)
    @overload
    def ExpressRoutePort(resource_name: str,
                         args: ExpressRoutePortArgs,
                         opts: Optional[ResourceOptions] = None)
    func NewExpressRoutePort(ctx *Context, name string, args ExpressRoutePortArgs, opts ...ResourceOption) (*ExpressRoutePort, error)
    public ExpressRoutePort(string name, ExpressRoutePortArgs args, CustomResourceOptions? opts = null)
    public ExpressRoutePort(String name, ExpressRoutePortArgs args)
    public ExpressRoutePort(String name, ExpressRoutePortArgs args, CustomResourceOptions options)
    
    type: azure:network:ExpressRoutePort
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ExpressRoutePortArgs
    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 ExpressRoutePortArgs
    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 ExpressRoutePortArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExpressRoutePortArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExpressRoutePortArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ExpressRoutePort Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ExpressRoutePort resource accepts the following input properties:

    BandwidthInGbps int

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    Encapsulation string

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    PeeringLocation string

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    ResourceGroupName string

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    BillingType string

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    Identity ExpressRoutePortIdentity

    An identity block as defined below.

    Link1 ExpressRoutePortLink1

    A list of link blocks as defined below.

    Link2 ExpressRoutePortLink2

    A list of link blocks as defined below.

    Location string

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    Name string

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    Tags Dictionary<string, string>

    A mapping of tags which should be assigned to the Express Route Port.

    BandwidthInGbps int

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    Encapsulation string

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    PeeringLocation string

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    ResourceGroupName string

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    BillingType string

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    Identity ExpressRoutePortIdentityArgs

    An identity block as defined below.

    Link1 ExpressRoutePortLink1Args

    A list of link blocks as defined below.

    Link2 ExpressRoutePortLink2Args

    A list of link blocks as defined below.

    Location string

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    Name string

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    Tags map[string]string

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidthInGbps Integer

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    encapsulation String

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    peeringLocation String

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resourceGroupName String

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    billingType String

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    identity ExpressRoutePortIdentity

    An identity block as defined below.

    link1 ExpressRoutePortLink1

    A list of link blocks as defined below.

    link2 ExpressRoutePortLink2

    A list of link blocks as defined below.

    location String

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    name String

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    tags Map<String,String>

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidthInGbps number

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    encapsulation string

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    peeringLocation string

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resourceGroupName string

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    billingType string

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    identity ExpressRoutePortIdentity

    An identity block as defined below.

    link1 ExpressRoutePortLink1

    A list of link blocks as defined below.

    link2 ExpressRoutePortLink2

    A list of link blocks as defined below.

    location string

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    name string

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    tags {[key: string]: string}

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidth_in_gbps int

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    encapsulation str

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    peering_location str

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resource_group_name str

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    billing_type str

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    identity ExpressRoutePortIdentityArgs

    An identity block as defined below.

    link1 ExpressRoutePortLink1Args

    A list of link blocks as defined below.

    link2 ExpressRoutePortLink2Args

    A list of link blocks as defined below.

    location str

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    name str

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    tags Mapping[str, str]

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidthInGbps Number

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    encapsulation String

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    peeringLocation String

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resourceGroupName String

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    billingType String

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    identity Property Map

    An identity block as defined below.

    link1 Property Map

    A list of link blocks as defined below.

    link2 Property Map

    A list of link blocks as defined below.

    location String

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    name String

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    tags Map<String>

    A mapping of tags which should be assigned to the Express Route Port.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ExpressRoutePort resource produces the following output properties:

    Ethertype string

    The EtherType of the Express Route Port.

    Guid string

    The resource GUID of the Express Route Port.

    Id string

    The provider-assigned unique ID for this managed resource.

    Mtu string

    The maximum transmission unit of the Express Route Port.

    Ethertype string

    The EtherType of the Express Route Port.

    Guid string

    The resource GUID of the Express Route Port.

    Id string

    The provider-assigned unique ID for this managed resource.

    Mtu string

    The maximum transmission unit of the Express Route Port.

    ethertype String

    The EtherType of the Express Route Port.

    guid String

    The resource GUID of the Express Route Port.

    id String

    The provider-assigned unique ID for this managed resource.

    mtu String

    The maximum transmission unit of the Express Route Port.

    ethertype string

    The EtherType of the Express Route Port.

    guid string

    The resource GUID of the Express Route Port.

    id string

    The provider-assigned unique ID for this managed resource.

    mtu string

    The maximum transmission unit of the Express Route Port.

    ethertype str

    The EtherType of the Express Route Port.

    guid str

    The resource GUID of the Express Route Port.

    id str

    The provider-assigned unique ID for this managed resource.

    mtu str

    The maximum transmission unit of the Express Route Port.

    ethertype String

    The EtherType of the Express Route Port.

    guid String

    The resource GUID of the Express Route Port.

    id String

    The provider-assigned unique ID for this managed resource.

    mtu String

    The maximum transmission unit of the Express Route Port.

    Look up Existing ExpressRoutePort Resource

    Get an existing ExpressRoutePort 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?: ExpressRoutePortState, opts?: CustomResourceOptions): ExpressRoutePort
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bandwidth_in_gbps: Optional[int] = None,
            billing_type: Optional[str] = None,
            encapsulation: Optional[str] = None,
            ethertype: Optional[str] = None,
            guid: Optional[str] = None,
            identity: Optional[ExpressRoutePortIdentityArgs] = None,
            link1: Optional[ExpressRoutePortLink1Args] = None,
            link2: Optional[ExpressRoutePortLink2Args] = None,
            location: Optional[str] = None,
            mtu: Optional[str] = None,
            name: Optional[str] = None,
            peering_location: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> ExpressRoutePort
    func GetExpressRoutePort(ctx *Context, name string, id IDInput, state *ExpressRoutePortState, opts ...ResourceOption) (*ExpressRoutePort, error)
    public static ExpressRoutePort Get(string name, Input<string> id, ExpressRoutePortState? state, CustomResourceOptions? opts = null)
    public static ExpressRoutePort get(String name, Output<String> id, ExpressRoutePortState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    BandwidthInGbps int

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    BillingType string

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    Encapsulation string

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    Ethertype string

    The EtherType of the Express Route Port.

    Guid string

    The resource GUID of the Express Route Port.

    Identity ExpressRoutePortIdentity

    An identity block as defined below.

    Link1 ExpressRoutePortLink1

    A list of link blocks as defined below.

    Link2 ExpressRoutePortLink2

    A list of link blocks as defined below.

    Location string

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    Mtu string

    The maximum transmission unit of the Express Route Port.

    Name string

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    PeeringLocation string

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    ResourceGroupName string

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    Tags Dictionary<string, string>

    A mapping of tags which should be assigned to the Express Route Port.

    BandwidthInGbps int

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    BillingType string

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    Encapsulation string

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    Ethertype string

    The EtherType of the Express Route Port.

    Guid string

    The resource GUID of the Express Route Port.

    Identity ExpressRoutePortIdentityArgs

    An identity block as defined below.

    Link1 ExpressRoutePortLink1Args

    A list of link blocks as defined below.

    Link2 ExpressRoutePortLink2Args

    A list of link blocks as defined below.

    Location string

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    Mtu string

    The maximum transmission unit of the Express Route Port.

    Name string

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    PeeringLocation string

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    ResourceGroupName string

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    Tags map[string]string

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidthInGbps Integer

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    billingType String

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    encapsulation String

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    ethertype String

    The EtherType of the Express Route Port.

    guid String

    The resource GUID of the Express Route Port.

    identity ExpressRoutePortIdentity

    An identity block as defined below.

    link1 ExpressRoutePortLink1

    A list of link blocks as defined below.

    link2 ExpressRoutePortLink2

    A list of link blocks as defined below.

    location String

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    mtu String

    The maximum transmission unit of the Express Route Port.

    name String

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    peeringLocation String

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resourceGroupName String

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    tags Map<String,String>

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidthInGbps number

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    billingType string

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    encapsulation string

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    ethertype string

    The EtherType of the Express Route Port.

    guid string

    The resource GUID of the Express Route Port.

    identity ExpressRoutePortIdentity

    An identity block as defined below.

    link1 ExpressRoutePortLink1

    A list of link blocks as defined below.

    link2 ExpressRoutePortLink2

    A list of link blocks as defined below.

    location string

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    mtu string

    The maximum transmission unit of the Express Route Port.

    name string

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    peeringLocation string

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resourceGroupName string

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    tags {[key: string]: string}

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidth_in_gbps int

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    billing_type str

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    encapsulation str

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    ethertype str

    The EtherType of the Express Route Port.

    guid str

    The resource GUID of the Express Route Port.

    identity ExpressRoutePortIdentityArgs

    An identity block as defined below.

    link1 ExpressRoutePortLink1Args

    A list of link blocks as defined below.

    link2 ExpressRoutePortLink2Args

    A list of link blocks as defined below.

    location str

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    mtu str

    The maximum transmission unit of the Express Route Port.

    name str

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    peering_location str

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resource_group_name str

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    tags Mapping[str, str]

    A mapping of tags which should be assigned to the Express Route Port.

    bandwidthInGbps Number

    Bandwidth of the Express Route Port in Gbps. Changing this forces a new Express Route Port to be created.

    billingType String

    The billing type of the Express Route Port. Possible values are MeteredData and UnlimitedData.

    encapsulation String

    The encapsulation method used for the Express Route Port. Changing this forces a new Express Route Port to be created. Possible values are: Dot1Q, QinQ.

    ethertype String

    The EtherType of the Express Route Port.

    guid String

    The resource GUID of the Express Route Port.

    identity Property Map

    An identity block as defined below.

    link1 Property Map

    A list of link blocks as defined below.

    link2 Property Map

    A list of link blocks as defined below.

    location String

    The Azure Region where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    mtu String

    The maximum transmission unit of the Express Route Port.

    name String

    The name which should be used for this Express Route Port. Changing this forces a new Express Route Port to be created.

    peeringLocation String

    The name of the peering location that this Express Route Port is physically mapped to. Changing this forces a new Express Route Port to be created.

    resourceGroupName String

    The name of the Resource Group where the Express Route Port should exist. Changing this forces a new Express Route Port to be created.

    tags Map<String>

    A mapping of tags which should be assigned to the Express Route Port.

    Supporting Types

    ExpressRoutePortIdentity, ExpressRoutePortIdentityArgs

    IdentityIds List<string>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Express Route Port.

    Type string

    Specifies the type of Managed Service Identity that should be configured on this Express Route Port. Only possible value is UserAssigned.

    IdentityIds []string

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Express Route Port.

    Type string

    Specifies the type of Managed Service Identity that should be configured on this Express Route Port. Only possible value is UserAssigned.

    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Express Route Port.

    type String

    Specifies the type of Managed Service Identity that should be configured on this Express Route Port. Only possible value is UserAssigned.

    identityIds string[]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Express Route Port.

    type string

    Specifies the type of Managed Service Identity that should be configured on this Express Route Port. Only possible value is UserAssigned.

    identity_ids Sequence[str]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Express Route Port.

    type str

    Specifies the type of Managed Service Identity that should be configured on this Express Route Port. Only possible value is UserAssigned.

    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Express Route Port.

    type String

    Specifies the type of Managed Service Identity that should be configured on this Express Route Port. Only possible value is UserAssigned.

    ExpressRoutePortLink1, ExpressRoutePortLink1Args

    AdminEnabled bool

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    ConnectorType string

    The connector type of the Express Route Port Link.

    Id string

    The ID of this Express Route Port Link.

    InterfaceName string

    The interface name of the Azure router associated with the Express Route Port Link.

    MacsecCakKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    MacsecCipher string

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    MacsecCknKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    PatchPanelId string

    The ID that maps from the Express Route Port Link to the patch panel port.

    RackId string

    The ID that maps from the patch panel port to the rack.

    RouterName string

    The name of the Azure router associated with the Express Route Port Link.

    AdminEnabled bool

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    ConnectorType string

    The connector type of the Express Route Port Link.

    Id string

    The ID of this Express Route Port Link.

    InterfaceName string

    The interface name of the Azure router associated with the Express Route Port Link.

    MacsecCakKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    MacsecCipher string

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    MacsecCknKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    PatchPanelId string

    The ID that maps from the Express Route Port Link to the patch panel port.

    RackId string

    The ID that maps from the patch panel port to the rack.

    RouterName string

    The name of the Azure router associated with the Express Route Port Link.

    adminEnabled Boolean

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connectorType String

    The connector type of the Express Route Port Link.

    id String

    The ID of this Express Route Port Link.

    interfaceName String

    The interface name of the Azure router associated with the Express Route Port Link.

    macsecCakKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsecCipher String

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsecCknKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patchPanelId String

    The ID that maps from the Express Route Port Link to the patch panel port.

    rackId String

    The ID that maps from the patch panel port to the rack.

    routerName String

    The name of the Azure router associated with the Express Route Port Link.

    adminEnabled boolean

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connectorType string

    The connector type of the Express Route Port Link.

    id string

    The ID of this Express Route Port Link.

    interfaceName string

    The interface name of the Azure router associated with the Express Route Port Link.

    macsecCakKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsecCipher string

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsecCknKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patchPanelId string

    The ID that maps from the Express Route Port Link to the patch panel port.

    rackId string

    The ID that maps from the patch panel port to the rack.

    routerName string

    The name of the Azure router associated with the Express Route Port Link.

    admin_enabled bool

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connector_type str

    The connector type of the Express Route Port Link.

    id str

    The ID of this Express Route Port Link.

    interface_name str

    The interface name of the Azure router associated with the Express Route Port Link.

    macsec_cak_keyvault_secret_id str

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsec_cipher str

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsec_ckn_keyvault_secret_id str

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patch_panel_id str

    The ID that maps from the Express Route Port Link to the patch panel port.

    rack_id str

    The ID that maps from the patch panel port to the rack.

    router_name str

    The name of the Azure router associated with the Express Route Port Link.

    adminEnabled Boolean

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connectorType String

    The connector type of the Express Route Port Link.

    id String

    The ID of this Express Route Port Link.

    interfaceName String

    The interface name of the Azure router associated with the Express Route Port Link.

    macsecCakKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsecCipher String

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsecCknKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patchPanelId String

    The ID that maps from the Express Route Port Link to the patch panel port.

    rackId String

    The ID that maps from the patch panel port to the rack.

    routerName String

    The name of the Azure router associated with the Express Route Port Link.

    ExpressRoutePortLink2, ExpressRoutePortLink2Args

    AdminEnabled bool

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    ConnectorType string

    The connector type of the Express Route Port Link.

    Id string

    The ID of this Express Route Port Link.

    InterfaceName string

    The interface name of the Azure router associated with the Express Route Port Link.

    MacsecCakKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    MacsecCipher string

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    MacsecCknKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    PatchPanelId string

    The ID that maps from the Express Route Port Link to the patch panel port.

    RackId string

    The ID that maps from the patch panel port to the rack.

    RouterName string

    The name of the Azure router associated with the Express Route Port Link.

    AdminEnabled bool

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    ConnectorType string

    The connector type of the Express Route Port Link.

    Id string

    The ID of this Express Route Port Link.

    InterfaceName string

    The interface name of the Azure router associated with the Express Route Port Link.

    MacsecCakKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    MacsecCipher string

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    MacsecCknKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    PatchPanelId string

    The ID that maps from the Express Route Port Link to the patch panel port.

    RackId string

    The ID that maps from the patch panel port to the rack.

    RouterName string

    The name of the Azure router associated with the Express Route Port Link.

    adminEnabled Boolean

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connectorType String

    The connector type of the Express Route Port Link.

    id String

    The ID of this Express Route Port Link.

    interfaceName String

    The interface name of the Azure router associated with the Express Route Port Link.

    macsecCakKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsecCipher String

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsecCknKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patchPanelId String

    The ID that maps from the Express Route Port Link to the patch panel port.

    rackId String

    The ID that maps from the patch panel port to the rack.

    routerName String

    The name of the Azure router associated with the Express Route Port Link.

    adminEnabled boolean

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connectorType string

    The connector type of the Express Route Port Link.

    id string

    The ID of this Express Route Port Link.

    interfaceName string

    The interface name of the Azure router associated with the Express Route Port Link.

    macsecCakKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsecCipher string

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsecCknKeyvaultSecretId string

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patchPanelId string

    The ID that maps from the Express Route Port Link to the patch panel port.

    rackId string

    The ID that maps from the patch panel port to the rack.

    routerName string

    The name of the Azure router associated with the Express Route Port Link.

    admin_enabled bool

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connector_type str

    The connector type of the Express Route Port Link.

    id str

    The ID of this Express Route Port Link.

    interface_name str

    The interface name of the Azure router associated with the Express Route Port Link.

    macsec_cak_keyvault_secret_id str

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsec_cipher str

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsec_ckn_keyvault_secret_id str

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patch_panel_id str

    The ID that maps from the Express Route Port Link to the patch panel port.

    rack_id str

    The ID that maps from the patch panel port to the rack.

    router_name str

    The name of the Azure router associated with the Express Route Port Link.

    adminEnabled Boolean

    Whether enable administration state on the Express Route Port Link? Defaults to false.

    connectorType String

    The connector type of the Express Route Port Link.

    id String

    The ID of this Express Route Port Link.

    interfaceName String

    The interface name of the Azure router associated with the Express Route Port Link.

    macsecCakKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.

    NOTE macsec_ckn_keyvault_secret_id and macsec_cak_keyvault_secret_id should be used together with identity, so that the Express Route Port instance have the right permission to access the Key Vault.

    macsecCipher String

    The MACSec cipher used for this Express Route Port Link. Possible values are GcmAes128 and GcmAes256. Defaults to GcmAes128.

    macsecCknKeyvaultSecretId String

    The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.

    patchPanelId String

    The ID that maps from the Express Route Port Link to the patch panel port.

    rackId String

    The ID that maps from the patch panel port to the rack.

    routerName String

    The name of the Azure router associated with the Express Route Port Link.

    Import

    Express Route Ports can be imported using the resource id, e.g.

     $ pulumi import azure:network/expressRoutePort:ExpressRoutePort example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/expressRoutePorts/port1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi