1. Registry
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. PolicyDistributedVxlanConnection
Viewing docs for nsxt 3.12.1
published on Friday, Sep 11, 2026 by vmware
Viewing docs for nsxt 3.12.1
published on Friday, Sep 11, 2026 by vmware

    Create PolicyDistributedVxlanConnection Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PolicyDistributedVxlanConnection(name: string, args: PolicyDistributedVxlanConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyDistributedVxlanConnection(resource_name: str,
                                         args: PolicyDistributedVxlanConnectionArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyDistributedVxlanConnection(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         display_name: Optional[str] = None,
                                         l3_vni: Optional[float] = None,
                                         route_controller_path: Optional[str] = None,
                                         route_distinguisher: Optional[str] = None,
                                         route_target: Optional[PolicyDistributedVxlanConnectionRouteTargetArgs] = None,
                                         connectivity_type: Optional[str] = None,
                                         description: Optional[str] = None,
                                         nsx_id: Optional[str] = None,
                                         policy_distributed_vxlan_connection_id: Optional[str] = None,
                                         tags: Optional[Sequence[PolicyDistributedVxlanConnectionTagArgs]] = None)
    func NewPolicyDistributedVxlanConnection(ctx *Context, name string, args PolicyDistributedVxlanConnectionArgs, opts ...ResourceOption) (*PolicyDistributedVxlanConnection, error)
    public PolicyDistributedVxlanConnection(string name, PolicyDistributedVxlanConnectionArgs args, CustomResourceOptions? opts = null)
    public PolicyDistributedVxlanConnection(String name, PolicyDistributedVxlanConnectionArgs args)
    public PolicyDistributedVxlanConnection(String name, PolicyDistributedVxlanConnectionArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyDistributedVxlanConnection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "nsxt_policy_distributed_vxlan_connection" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PolicyDistributedVxlanConnectionArgs
    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 PolicyDistributedVxlanConnectionArgs
    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 PolicyDistributedVxlanConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyDistributedVxlanConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyDistributedVxlanConnectionArgs
    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 policyDistributedVxlanConnectionResource = new Nsxt.PolicyDistributedVxlanConnection("policyDistributedVxlanConnectionResource", new()
    {
        DisplayName = "string",
        L3Vni = 0.0,
        RouteControllerPath = "string",
        RouteDistinguisher = "string",
        RouteTarget = new Nsxt.Inputs.PolicyDistributedVxlanConnectionRouteTargetArgs
        {
            AddressFamily = "string",
            ExportTargets = new[]
            {
                "string",
            },
            ImportTargets = new[]
            {
                "string",
            },
        },
        ConnectivityType = "string",
        Description = "string",
        NsxId = "string",
        PolicyDistributedVxlanConnectionId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyDistributedVxlanConnectionTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyDistributedVxlanConnection(ctx, "policyDistributedVxlanConnectionResource", &nsxt.PolicyDistributedVxlanConnectionArgs{
    	DisplayName:         pulumi.String("string"),
    	L3Vni:               pulumi.Float64(0),
    	RouteControllerPath: pulumi.String("string"),
    	RouteDistinguisher:  pulumi.String("string"),
    	RouteTarget: &nsxt.PolicyDistributedVxlanConnectionRouteTargetArgs{
    		AddressFamily: pulumi.String("string"),
    		ExportTargets: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ImportTargets: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	ConnectivityType:                   pulumi.String("string"),
    	Description:                        pulumi.String("string"),
    	NsxId:                              pulumi.String("string"),
    	PolicyDistributedVxlanConnectionId: pulumi.String("string"),
    	Tags: nsxt.PolicyDistributedVxlanConnectionTagArray{
    		&nsxt.PolicyDistributedVxlanConnectionTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    resource "nsxt_policy_distributed_vxlan_connection" "policyDistributedVxlanConnectionResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name          = "string"
      l3_vni                = 0
      route_controller_path = "string"
      route_distinguisher   = "string"
      route_target = {
        address_family = "string"
        export_targets = ["string"]
        import_targets = ["string"]
      }
      connectivity_type                      = "string"
      description                            = "string"
      nsx_id                                 = "string"
      policy_distributed_vxlan_connection_id = "string"
      tags {
        scope = "string"
        tag   = "string"
      }
    }
    
    var policyDistributedVxlanConnectionResource = new PolicyDistributedVxlanConnection("policyDistributedVxlanConnectionResource", PolicyDistributedVxlanConnectionArgs.builder()
        .displayName("string")
        .l3Vni(0.0)
        .routeControllerPath("string")
        .routeDistinguisher("string")
        .routeTarget(PolicyDistributedVxlanConnectionRouteTargetArgs.builder()
            .addressFamily("string")
            .exportTargets("string")
            .importTargets("string")
            .build())
        .connectivityType("string")
        .description("string")
        .nsxId("string")
        .policyDistributedVxlanConnectionId("string")
        .tags(PolicyDistributedVxlanConnectionTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_distributed_vxlan_connection_resource = nsxt.PolicyDistributedVxlanConnection("policyDistributedVxlanConnectionResource",
        display_name="string",
        l3_vni=float(0),
        route_controller_path="string",
        route_distinguisher="string",
        route_target={
            "address_family": "string",
            "export_targets": ["string"],
            "import_targets": ["string"],
        },
        connectivity_type="string",
        description="string",
        nsx_id="string",
        policy_distributed_vxlan_connection_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyDistributedVxlanConnectionResource = new nsxt.PolicyDistributedVxlanConnection("policyDistributedVxlanConnectionResource", {
        displayName: "string",
        l3Vni: 0,
        routeControllerPath: "string",
        routeDistinguisher: "string",
        routeTarget: {
            addressFamily: "string",
            exportTargets: ["string"],
            importTargets: ["string"],
        },
        connectivityType: "string",
        description: "string",
        nsxId: "string",
        policyDistributedVxlanConnectionId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyDistributedVxlanConnection
    properties:
        connectivityType: string
        description: string
        displayName: string
        l3Vni: 0
        nsxId: string
        policyDistributedVxlanConnectionId: string
        routeControllerPath: string
        routeDistinguisher: string
        routeTarget:
            addressFamily: string
            exportTargets:
                - string
            importTargets:
                - string
        tags:
            - scope: string
              tag: string
    

    PolicyDistributedVxlanConnection 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 PolicyDistributedVxlanConnection resource accepts the following input properties:

    DisplayName string
    Display name of the resource.
    L3Vni double
    L3 VNI for overlay traffic.
    RouteControllerPath string
    Policy path of the route controller.
    RouteDistinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    RouteTarget PolicyDistributedVxlanConnectionRouteTarget
    Route target configuration. Only one block is supported.
    ConnectivityType string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    Description string
    Description of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyDistributedVxlanConnectionId string
    ID of the resource.
    Tags List<PolicyDistributedVxlanConnectionTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    L3Vni float64
    L3 VNI for overlay traffic.
    RouteControllerPath string
    Policy path of the route controller.
    RouteDistinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    RouteTarget PolicyDistributedVxlanConnectionRouteTargetArgs
    Route target configuration. Only one block is supported.
    ConnectivityType string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    Description string
    Description of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyDistributedVxlanConnectionId string
    ID of the resource.
    Tags []PolicyDistributedVxlanConnectionTagArgs
    A list of scope + tag pairs to associate with this resource.
    display_name string
    Display name of the resource.
    l3_vni number
    L3 VNI for overlay traffic.
    route_controller_path string
    Policy path of the route controller.
    route_distinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    route_target object
    Route target configuration. Only one block is supported.
    connectivity_type string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description string
    Description of the resource.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_distributed_vxlan_connection_id string
    ID of the resource.
    tags list(object)
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    l3Vni Double
    L3 VNI for overlay traffic.
    routeControllerPath String
    Policy path of the route controller.
    routeDistinguisher String
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    routeTarget PolicyDistributedVxlanConnectionRouteTarget
    Route target configuration. Only one block is supported.
    connectivityType String
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description String
    Description of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyDistributedVxlanConnectionId String
    ID of the resource.
    tags List<PolicyDistributedVxlanConnectionTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    l3Vni number
    L3 VNI for overlay traffic.
    routeControllerPath string
    Policy path of the route controller.
    routeDistinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    routeTarget PolicyDistributedVxlanConnectionRouteTarget
    Route target configuration. Only one block is supported.
    connectivityType string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description string
    Description of the resource.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyDistributedVxlanConnectionId string
    ID of the resource.
    tags PolicyDistributedVxlanConnectionTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    l3_vni float
    L3 VNI for overlay traffic.
    route_controller_path str
    Policy path of the route controller.
    route_distinguisher str
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    route_target PolicyDistributedVxlanConnectionRouteTargetArgs
    Route target configuration. Only one block is supported.
    connectivity_type str
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description str
    Description of the resource.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_distributed_vxlan_connection_id str
    ID of the resource.
    tags Sequence[PolicyDistributedVxlanConnectionTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    l3Vni Number
    L3 VNI for overlay traffic.
    routeControllerPath String
    Policy path of the route controller.
    routeDistinguisher String
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    routeTarget Property Map
    Route target configuration. Only one block is supported.
    connectivityType String
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description String
    Description of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyDistributedVxlanConnectionId String
    ID of the resource.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyDistributedVxlanConnection Resource

    Get an existing PolicyDistributedVxlanConnection 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?: PolicyDistributedVxlanConnectionState, opts?: CustomResourceOptions): PolicyDistributedVxlanConnection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connectivity_type: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            l3_vni: Optional[float] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_distributed_vxlan_connection_id: Optional[str] = None,
            revision: Optional[float] = None,
            route_controller_path: Optional[str] = None,
            route_distinguisher: Optional[str] = None,
            route_target: Optional[PolicyDistributedVxlanConnectionRouteTargetArgs] = None,
            tags: Optional[Sequence[PolicyDistributedVxlanConnectionTagArgs]] = None) -> PolicyDistributedVxlanConnection
    func GetPolicyDistributedVxlanConnection(ctx *Context, name string, id IDInput, state *PolicyDistributedVxlanConnectionState, opts ...ResourceOption) (*PolicyDistributedVxlanConnection, error)
    public static PolicyDistributedVxlanConnection Get(string name, Input<string> id, PolicyDistributedVxlanConnectionState? state, CustomResourceOptions? opts = null)
    public static PolicyDistributedVxlanConnection get(String name, Output<String> id, PolicyDistributedVxlanConnectionState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyDistributedVxlanConnection    get:      id: ${id}
    import {
      to = nsxt_policy_distributed_vxlan_connection.example
      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.
    The following state arguments are supported:
    ConnectivityType string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    L3Vni double
    L3 VNI for overlay traffic.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicyDistributedVxlanConnectionId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    RouteControllerPath string
    Policy path of the route controller.
    RouteDistinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    RouteTarget PolicyDistributedVxlanConnectionRouteTarget
    Route target configuration. Only one block is supported.
    Tags List<PolicyDistributedVxlanConnectionTag>
    A list of scope + tag pairs to associate with this resource.
    ConnectivityType string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    L3Vni float64
    L3 VNI for overlay traffic.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicyDistributedVxlanConnectionId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    RouteControllerPath string
    Policy path of the route controller.
    RouteDistinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    RouteTarget PolicyDistributedVxlanConnectionRouteTargetArgs
    Route target configuration. Only one block is supported.
    Tags []PolicyDistributedVxlanConnectionTagArgs
    A list of scope + tag pairs to associate with this resource.
    connectivity_type string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description string
    Description of the resource.
    display_name string
    Display name of the resource.
    l3_vni number
    L3 VNI for overlay traffic.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the policy resource.
    policy_distributed_vxlan_connection_id string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    route_controller_path string
    Policy path of the route controller.
    route_distinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    route_target object
    Route target configuration. Only one block is supported.
    tags list(object)
    A list of scope + tag pairs to associate with this resource.
    connectivityType String
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    l3Vni Double
    L3 VNI for overlay traffic.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policyDistributedVxlanConnectionId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    routeControllerPath String
    Policy path of the route controller.
    routeDistinguisher String
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    routeTarget PolicyDistributedVxlanConnectionRouteTarget
    Route target configuration. Only one block is supported.
    tags List<PolicyDistributedVxlanConnectionTag>
    A list of scope + tag pairs to associate with this resource.
    connectivityType string
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    l3Vni number
    L3 VNI for overlay traffic.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the policy resource.
    policyDistributedVxlanConnectionId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    routeControllerPath string
    Policy path of the route controller.
    routeDistinguisher string
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    routeTarget PolicyDistributedVxlanConnectionRouteTarget
    Route target configuration. Only one block is supported.
    tags PolicyDistributedVxlanConnectionTag[]
    A list of scope + tag pairs to associate with this resource.
    connectivity_type str
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    l3_vni float
    L3 VNI for overlay traffic.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path str
    The NSX path of the policy resource.
    policy_distributed_vxlan_connection_id str
    ID of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    route_controller_path str
    Policy path of the route controller.
    route_distinguisher str
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    route_target PolicyDistributedVxlanConnectionRouteTargetArgs
    Route target configuration. Only one block is supported.
    tags Sequence[PolicyDistributedVxlanConnectionTagArgs]
    A list of scope + tag pairs to associate with this resource.
    connectivityType String
    Connectivity type for the distributed VXLAN connection. Currently only L3_EVPN is supported. Default is L3_EVPN.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    l3Vni Number
    L3 VNI for overlay traffic.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policyDistributedVxlanConnectionId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    routeControllerPath String
    Policy path of the route controller.
    routeDistinguisher String
    Route distinguisher for the VXLAN connection. Must be in ASN:nn or IP:nn format.
    routeTarget Property Map
    Route target configuration. Only one block is supported.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicyDistributedVxlanConnectionRouteTarget, PolicyDistributedVxlanConnectionRouteTargetArgs

    AddressFamily string
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    ExportTargets List<string>
    List of export route targets in ASN:nn format.
    ImportTargets List<string>
    List of import route targets in ASN:nn format.
    AddressFamily string
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    ExportTargets []string
    List of export route targets in ASN:nn format.
    ImportTargets []string
    List of import route targets in ASN:nn format.
    address_family string
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    export_targets list(string)
    List of export route targets in ASN:nn format.
    import_targets list(string)
    List of import route targets in ASN:nn format.
    addressFamily String
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    exportTargets List<String>
    List of export route targets in ASN:nn format.
    importTargets List<String>
    List of import route targets in ASN:nn format.
    addressFamily string
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    exportTargets string[]
    List of export route targets in ASN:nn format.
    importTargets string[]
    List of import route targets in ASN:nn format.
    address_family str
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    export_targets Sequence[str]
    List of export route targets in ASN:nn format.
    import_targets Sequence[str]
    List of import route targets in ASN:nn format.
    addressFamily String
    Address family for route targets. Currently only L2VPN_EVPN is supported. Default is L2VPN_EVPN.
    exportTargets List<String>
    List of export route targets in ASN:nn format.
    importTargets List<String>
    List of import route targets in ASN:nn format.

    PolicyDistributedVxlanConnectionTag, PolicyDistributedVxlanConnectionTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope str
    tag str
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    Viewing docs for nsxt 3.12.1
    published on Friday, Sep 11, 2026 by vmware

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial