1. Registry
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. PolicyRouteControllerInterface
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 PolicyRouteControllerInterface Resource

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

    Constructor syntax

    new PolicyRouteControllerInterface(name: string, args: PolicyRouteControllerInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyRouteControllerInterface(resource_name: str,
                                       args: PolicyRouteControllerInterfaceArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyRouteControllerInterface(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       display_name: Optional[str] = None,
                                       interface_addresses: Optional[Sequence[PolicyRouteControllerInterfaceInterfaceAddressArgs]] = None,
                                       parent_path: Optional[str] = None,
                                       description: Optional[str] = None,
                                       floating_ip_subnets: Optional[Sequence[str]] = None,
                                       mtu: Optional[float] = None,
                                       nsx_id: Optional[str] = None,
                                       policy_route_controller_interface_id: Optional[str] = None,
                                       tags: Optional[Sequence[PolicyRouteControllerInterfaceTagArgs]] = None,
                                       urpf_mode: Optional[str] = None)
    func NewPolicyRouteControllerInterface(ctx *Context, name string, args PolicyRouteControllerInterfaceArgs, opts ...ResourceOption) (*PolicyRouteControllerInterface, error)
    public PolicyRouteControllerInterface(string name, PolicyRouteControllerInterfaceArgs args, CustomResourceOptions? opts = null)
    public PolicyRouteControllerInterface(String name, PolicyRouteControllerInterfaceArgs args)
    public PolicyRouteControllerInterface(String name, PolicyRouteControllerInterfaceArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyRouteControllerInterface
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "nsxt_policy_route_controller_interface" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PolicyRouteControllerInterfaceArgs
    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 PolicyRouteControllerInterfaceArgs
    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 PolicyRouteControllerInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyRouteControllerInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyRouteControllerInterfaceArgs
    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 policyRouteControllerInterfaceResource = new Nsxt.PolicyRouteControllerInterface("policyRouteControllerInterfaceResource", new()
    {
        DisplayName = "string",
        InterfaceAddresses = new[]
        {
            new Nsxt.Inputs.PolicyRouteControllerInterfaceInterfaceAddressArgs
            {
                PortgroupId = "string",
                Subnets = new[]
                {
                    "string",
                },
                VirtualNetworkAppliancePath = "string",
            },
        },
        ParentPath = "string",
        Description = "string",
        FloatingIpSubnets = new[]
        {
            "string",
        },
        Mtu = 0.0,
        NsxId = "string",
        PolicyRouteControllerInterfaceId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyRouteControllerInterfaceTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        UrpfMode = "string",
    });
    
    example, err := nsxt.NewPolicyRouteControllerInterface(ctx, "policyRouteControllerInterfaceResource", &nsxt.PolicyRouteControllerInterfaceArgs{
    	DisplayName: pulumi.String("string"),
    	InterfaceAddresses: nsxt.PolicyRouteControllerInterfaceInterfaceAddressArray{
    		&nsxt.PolicyRouteControllerInterfaceInterfaceAddressArgs{
    			PortgroupId: pulumi.String("string"),
    			Subnets: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			VirtualNetworkAppliancePath: pulumi.String("string"),
    		},
    	},
    	ParentPath:  pulumi.String("string"),
    	Description: pulumi.String("string"),
    	FloatingIpSubnets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Mtu:                              pulumi.Float64(0),
    	NsxId:                            pulumi.String("string"),
    	PolicyRouteControllerInterfaceId: pulumi.String("string"),
    	Tags: nsxt.PolicyRouteControllerInterfaceTagArray{
    		&nsxt.PolicyRouteControllerInterfaceTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	UrpfMode: pulumi.String("string"),
    })
    
    resource "nsxt_policy_route_controller_interface" "policyRouteControllerInterfaceResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name = "string"
      interface_addresses {
        portgroup_id                   = "string"
        subnets                        = ["string"]
        virtual_network_appliance_path = "string"
      }
      parent_path                          = "string"
      description                          = "string"
      floating_ip_subnets                  = ["string"]
      mtu                                  = 0
      nsx_id                               = "string"
      policy_route_controller_interface_id = "string"
      tags {
        scope = "string"
        tag   = "string"
      }
      urpf_mode = "string"
    }
    
    var policyRouteControllerInterfaceResource = new PolicyRouteControllerInterface("policyRouteControllerInterfaceResource", PolicyRouteControllerInterfaceArgs.builder()
        .displayName("string")
        .interfaceAddresses(PolicyRouteControllerInterfaceInterfaceAddressArgs.builder()
            .portgroupId("string")
            .subnets("string")
            .virtualNetworkAppliancePath("string")
            .build())
        .parentPath("string")
        .description("string")
        .floatingIpSubnets("string")
        .mtu(0.0)
        .nsxId("string")
        .policyRouteControllerInterfaceId("string")
        .tags(PolicyRouteControllerInterfaceTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .urpfMode("string")
        .build());
    
    policy_route_controller_interface_resource = nsxt.PolicyRouteControllerInterface("policyRouteControllerInterfaceResource",
        display_name="string",
        interface_addresses=[{
            "portgroup_id": "string",
            "subnets": ["string"],
            "virtual_network_appliance_path": "string",
        }],
        parent_path="string",
        description="string",
        floating_ip_subnets=["string"],
        mtu=float(0),
        nsx_id="string",
        policy_route_controller_interface_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        urpf_mode="string")
    
    const policyRouteControllerInterfaceResource = new nsxt.PolicyRouteControllerInterface("policyRouteControllerInterfaceResource", {
        displayName: "string",
        interfaceAddresses: [{
            portgroupId: "string",
            subnets: ["string"],
            virtualNetworkAppliancePath: "string",
        }],
        parentPath: "string",
        description: "string",
        floatingIpSubnets: ["string"],
        mtu: 0,
        nsxId: "string",
        policyRouteControllerInterfaceId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
        urpfMode: "string",
    });
    
    type: nsxt:PolicyRouteControllerInterface
    properties:
        description: string
        displayName: string
        floatingIpSubnets:
            - string
        interfaceAddresses:
            - portgroupId: string
              subnets:
                - string
              virtualNetworkAppliancePath: string
        mtu: 0
        nsxId: string
        parentPath: string
        policyRouteControllerInterfaceId: string
        tags:
            - scope: string
              tag: string
        urpfMode: string
    

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

    DisplayName string
    Display name of the resource.
    InterfaceAddresses List<PolicyRouteControllerInterfaceInterfaceAddress>
    List of interface address configurations. The following arguments are supported:
    ParentPath string
    Policy path of the parent Route Controller.
    Description string
    Description of the resource.
    FloatingIpSubnets List<string>
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    Mtu double
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyRouteControllerInterfaceId string
    ID of the resource.
    Tags List<PolicyRouteControllerInterfaceTag>
    A list of scope + tag pairs to associate with this resource.
    UrpfMode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    DisplayName string
    Display name of the resource.
    InterfaceAddresses []PolicyRouteControllerInterfaceInterfaceAddressArgs
    List of interface address configurations. The following arguments are supported:
    ParentPath string
    Policy path of the parent Route Controller.
    Description string
    Description of the resource.
    FloatingIpSubnets []string
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    Mtu float64
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyRouteControllerInterfaceId string
    ID of the resource.
    Tags []PolicyRouteControllerInterfaceTagArgs
    A list of scope + tag pairs to associate with this resource.
    UrpfMode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    display_name string
    Display name of the resource.
    interface_addresses list(object)
    List of interface address configurations. The following arguments are supported:
    parent_path string
    Policy path of the parent Route Controller.
    description string
    Description of the resource.
    floating_ip_subnets list(string)
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    mtu number
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_route_controller_interface_id string
    ID of the resource.
    tags list(object)
    A list of scope + tag pairs to associate with this resource.
    urpf_mode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    displayName String
    Display name of the resource.
    interfaceAddresses List<PolicyRouteControllerInterfaceInterfaceAddress>
    List of interface address configurations. The following arguments are supported:
    parentPath String
    Policy path of the parent Route Controller.
    description String
    Description of the resource.
    floatingIpSubnets List<String>
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    mtu Double
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyRouteControllerInterfaceId String
    ID of the resource.
    tags List<PolicyRouteControllerInterfaceTag>
    A list of scope + tag pairs to associate with this resource.
    urpfMode String
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    displayName string
    Display name of the resource.
    interfaceAddresses PolicyRouteControllerInterfaceInterfaceAddress[]
    List of interface address configurations. The following arguments are supported:
    parentPath string
    Policy path of the parent Route Controller.
    description string
    Description of the resource.
    floatingIpSubnets string[]
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    mtu number
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyRouteControllerInterfaceId string
    ID of the resource.
    tags PolicyRouteControllerInterfaceTag[]
    A list of scope + tag pairs to associate with this resource.
    urpfMode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    display_name str
    Display name of the resource.
    interface_addresses Sequence[PolicyRouteControllerInterfaceInterfaceAddressArgs]
    List of interface address configurations. The following arguments are supported:
    parent_path str
    Policy path of the parent Route Controller.
    description str
    Description of the resource.
    floating_ip_subnets Sequence[str]
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    mtu float
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_route_controller_interface_id str
    ID of the resource.
    tags Sequence[PolicyRouteControllerInterfaceTagArgs]
    A list of scope + tag pairs to associate with this resource.
    urpf_mode str
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    displayName String
    Display name of the resource.
    interfaceAddresses List<Property Map>
    List of interface address configurations. The following arguments are supported:
    parentPath String
    Policy path of the parent Route Controller.
    description String
    Description of the resource.
    floatingIpSubnets List<String>
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    mtu Number
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyRouteControllerInterfaceId String
    ID of the resource.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    urpfMode String
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyRouteControllerInterface 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 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 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 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 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 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 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 of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyRouteControllerInterface Resource

    Get an existing PolicyRouteControllerInterface 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?: PolicyRouteControllerInterfaceState, opts?: CustomResourceOptions): PolicyRouteControllerInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            floating_ip_subnets: Optional[Sequence[str]] = None,
            interface_addresses: Optional[Sequence[PolicyRouteControllerInterfaceInterfaceAddressArgs]] = None,
            mtu: Optional[float] = None,
            nsx_id: Optional[str] = None,
            parent_path: Optional[str] = None,
            path: Optional[str] = None,
            policy_route_controller_interface_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyRouteControllerInterfaceTagArgs]] = None,
            urpf_mode: Optional[str] = None) -> PolicyRouteControllerInterface
    func GetPolicyRouteControllerInterface(ctx *Context, name string, id IDInput, state *PolicyRouteControllerInterfaceState, opts ...ResourceOption) (*PolicyRouteControllerInterface, error)
    public static PolicyRouteControllerInterface Get(string name, Input<string> id, PolicyRouteControllerInterfaceState? state, CustomResourceOptions? opts = null)
    public static PolicyRouteControllerInterface get(String name, Output<String> id, PolicyRouteControllerInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyRouteControllerInterface    get:      id: ${id}
    import {
      to = nsxt_policy_route_controller_interface.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:
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    FloatingIpSubnets List<string>
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    InterfaceAddresses List<PolicyRouteControllerInterfaceInterfaceAddress>
    List of interface address configurations. The following arguments are supported:
    Mtu double
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    ParentPath string
    Policy path of the parent Route Controller.
    Path string
    The NSX path of the policy resource.
    PolicyRouteControllerInterfaceId string
    ID of the resource.
    Revision double
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<PolicyRouteControllerInterfaceTag>
    A list of scope + tag pairs to associate with this resource.
    UrpfMode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    FloatingIpSubnets []string
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    InterfaceAddresses []PolicyRouteControllerInterfaceInterfaceAddressArgs
    List of interface address configurations. The following arguments are supported:
    Mtu float64
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    ParentPath string
    Policy path of the parent Route Controller.
    Path string
    The NSX path of the policy resource.
    PolicyRouteControllerInterfaceId string
    ID of the resource.
    Revision float64
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicyRouteControllerInterfaceTagArgs
    A list of scope + tag pairs to associate with this resource.
    UrpfMode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    description string
    Description of the resource.
    display_name string
    Display name of the resource.
    floating_ip_subnets list(string)
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    interface_addresses list(object)
    List of interface address configurations. The following arguments are supported:
    mtu number
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parent_path string
    Policy path of the parent Route Controller.
    path string
    The NSX path of the policy resource.
    policy_route_controller_interface_id string
    ID of the resource.
    revision number
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags list(object)
    A list of scope + tag pairs to associate with this resource.
    urpf_mode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    floatingIpSubnets List<String>
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    interfaceAddresses List<PolicyRouteControllerInterfaceInterfaceAddress>
    List of interface address configurations. The following arguments are supported:
    mtu Double
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parentPath String
    Policy path of the parent Route Controller.
    path String
    The NSX path of the policy resource.
    policyRouteControllerInterfaceId String
    ID of the resource.
    revision Double
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<PolicyRouteControllerInterfaceTag>
    A list of scope + tag pairs to associate with this resource.
    urpfMode String
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    floatingIpSubnets string[]
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    interfaceAddresses PolicyRouteControllerInterfaceInterfaceAddress[]
    List of interface address configurations. The following arguments are supported:
    mtu number
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parentPath string
    Policy path of the parent Route Controller.
    path string
    The NSX path of the policy resource.
    policyRouteControllerInterfaceId string
    ID of the resource.
    revision number
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicyRouteControllerInterfaceTag[]
    A list of scope + tag pairs to associate with this resource.
    urpfMode string
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    floating_ip_subnets Sequence[str]
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    interface_addresses Sequence[PolicyRouteControllerInterfaceInterfaceAddressArgs]
    List of interface address configurations. The following arguments are supported:
    mtu float
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parent_path str
    Policy path of the parent Route Controller.
    path str
    The NSX path of the policy resource.
    policy_route_controller_interface_id str
    ID of the resource.
    revision float
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[PolicyRouteControllerInterfaceTagArgs]
    A list of scope + tag pairs to associate with this resource.
    urpf_mode str
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    floatingIpSubnets List<String>
    List of floating IP subnets in CIDR notation (IP/prefix-length) for this interface. Required when the Route Controller HA mode is ACTIVE_STANDBY.
    interfaceAddresses List<Property Map>
    List of interface address configurations. The following arguments are supported:
    mtu Number
    Maximum transmission unit specifies the size of the largest packet that a network protocol can transmit. Minimum value is 64.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    parentPath String
    Policy path of the parent Route Controller.
    path String
    The NSX path of the policy resource.
    policyRouteControllerInterfaceId String
    ID of the resource.
    revision Number
    Indicates current revision of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    urpfMode String
    Unicast Reverse Path Forwarding mode. One of NONE, STRICT. Defaults to STRICT.

    Supporting Types

    PolicyRouteControllerInterfaceInterfaceAddress, PolicyRouteControllerInterfaceInterfaceAddressArgs

    PortgroupId string
    DV port group identifier discovered from vCenter.
    Subnets List<string>
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    VirtualNetworkAppliancePath string
    Policy path for the virtual network appliance.
    PortgroupId string
    DV port group identifier discovered from vCenter.
    Subnets []string
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    VirtualNetworkAppliancePath string
    Policy path for the virtual network appliance.
    portgroup_id string
    DV port group identifier discovered from vCenter.
    subnets list(string)
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    virtual_network_appliance_path string
    Policy path for the virtual network appliance.
    portgroupId String
    DV port group identifier discovered from vCenter.
    subnets List<String>
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    virtualNetworkAppliancePath String
    Policy path for the virtual network appliance.
    portgroupId string
    DV port group identifier discovered from vCenter.
    subnets string[]
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    virtualNetworkAppliancePath string
    Policy path for the virtual network appliance.
    portgroup_id str
    DV port group identifier discovered from vCenter.
    subnets Sequence[str]
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    virtual_network_appliance_path str
    Policy path for the virtual network appliance.
    portgroupId String
    DV port group identifier discovered from vCenter.
    subnets List<String>
    List of IP addresses and network prefixes in CIDR notation for this interface address.
    virtualNetworkAppliancePath String
    Policy path for the virtual network appliance.

    PolicyRouteControllerInterfaceTag, PolicyRouteControllerInterfaceTagArgs

    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