1. Packages
  2. Nsxt Provider
  3. API Docs
  4. LogicalTier1Router
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.LogicalTier1Router

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create LogicalTier1Router Resource

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

    Constructor syntax

    new LogicalTier1Router(name: string, args?: LogicalTier1RouterArgs, opts?: CustomResourceOptions);
    @overload
    def LogicalTier1Router(resource_name: str,
                           args: Optional[LogicalTier1RouterArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def LogicalTier1Router(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           advertise_connected_routes: Optional[bool] = None,
                           advertise_lb_snat_ip_routes: Optional[bool] = None,
                           advertise_lb_vip_routes: Optional[bool] = None,
                           advertise_nat_routes: Optional[bool] = None,
                           advertise_static_routes: Optional[bool] = None,
                           description: Optional[str] = None,
                           display_name: Optional[str] = None,
                           edge_cluster_id: Optional[str] = None,
                           enable_router_advertisement: Optional[bool] = None,
                           failover_mode: Optional[str] = None,
                           firewall_sections: Optional[Sequence[LogicalTier1RouterFirewallSectionArgs]] = None,
                           logical_tier1_router_id: Optional[str] = None,
                           tags: Optional[Sequence[LogicalTier1RouterTagArgs]] = None)
    func NewLogicalTier1Router(ctx *Context, name string, args *LogicalTier1RouterArgs, opts ...ResourceOption) (*LogicalTier1Router, error)
    public LogicalTier1Router(string name, LogicalTier1RouterArgs? args = null, CustomResourceOptions? opts = null)
    public LogicalTier1Router(String name, LogicalTier1RouterArgs args)
    public LogicalTier1Router(String name, LogicalTier1RouterArgs args, CustomResourceOptions options)
    
    type: nsxt:LogicalTier1Router
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LogicalTier1RouterArgs
    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 LogicalTier1RouterArgs
    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 LogicalTier1RouterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LogicalTier1RouterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LogicalTier1RouterArgs
    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 logicalTier1RouterResource = new Nsxt.LogicalTier1Router("logicalTier1RouterResource", new()
    {
        AdvertiseConnectedRoutes = false,
        AdvertiseLbSnatIpRoutes = false,
        AdvertiseLbVipRoutes = false,
        AdvertiseNatRoutes = false,
        AdvertiseStaticRoutes = false,
        Description = "string",
        DisplayName = "string",
        EdgeClusterId = "string",
        EnableRouterAdvertisement = false,
        FailoverMode = "string",
        FirewallSections = new[]
        {
            new Nsxt.Inputs.LogicalTier1RouterFirewallSectionArgs
            {
                IsValid = false,
                TargetDisplayName = "string",
                TargetId = "string",
                TargetType = "string",
            },
        },
        LogicalTier1RouterId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.LogicalTier1RouterTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewLogicalTier1Router(ctx, "logicalTier1RouterResource", &nsxt.LogicalTier1RouterArgs{
    	AdvertiseConnectedRoutes:  pulumi.Bool(false),
    	AdvertiseLbSnatIpRoutes:   pulumi.Bool(false),
    	AdvertiseLbVipRoutes:      pulumi.Bool(false),
    	AdvertiseNatRoutes:        pulumi.Bool(false),
    	AdvertiseStaticRoutes:     pulumi.Bool(false),
    	Description:               pulumi.String("string"),
    	DisplayName:               pulumi.String("string"),
    	EdgeClusterId:             pulumi.String("string"),
    	EnableRouterAdvertisement: pulumi.Bool(false),
    	FailoverMode:              pulumi.String("string"),
    	FirewallSections: nsxt.LogicalTier1RouterFirewallSectionArray{
    		&nsxt.LogicalTier1RouterFirewallSectionArgs{
    			IsValid:           pulumi.Bool(false),
    			TargetDisplayName: pulumi.String("string"),
    			TargetId:          pulumi.String("string"),
    			TargetType:        pulumi.String("string"),
    		},
    	},
    	LogicalTier1RouterId: pulumi.String("string"),
    	Tags: nsxt.LogicalTier1RouterTagArray{
    		&nsxt.LogicalTier1RouterTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var logicalTier1RouterResource = new LogicalTier1Router("logicalTier1RouterResource", LogicalTier1RouterArgs.builder()
        .advertiseConnectedRoutes(false)
        .advertiseLbSnatIpRoutes(false)
        .advertiseLbVipRoutes(false)
        .advertiseNatRoutes(false)
        .advertiseStaticRoutes(false)
        .description("string")
        .displayName("string")
        .edgeClusterId("string")
        .enableRouterAdvertisement(false)
        .failoverMode("string")
        .firewallSections(LogicalTier1RouterFirewallSectionArgs.builder()
            .isValid(false)
            .targetDisplayName("string")
            .targetId("string")
            .targetType("string")
            .build())
        .logicalTier1RouterId("string")
        .tags(LogicalTier1RouterTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    logical_tier1_router_resource = nsxt.LogicalTier1Router("logicalTier1RouterResource",
        advertise_connected_routes=False,
        advertise_lb_snat_ip_routes=False,
        advertise_lb_vip_routes=False,
        advertise_nat_routes=False,
        advertise_static_routes=False,
        description="string",
        display_name="string",
        edge_cluster_id="string",
        enable_router_advertisement=False,
        failover_mode="string",
        firewall_sections=[{
            "is_valid": False,
            "target_display_name": "string",
            "target_id": "string",
            "target_type": "string",
        }],
        logical_tier1_router_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const logicalTier1RouterResource = new nsxt.LogicalTier1Router("logicalTier1RouterResource", {
        advertiseConnectedRoutes: false,
        advertiseLbSnatIpRoutes: false,
        advertiseLbVipRoutes: false,
        advertiseNatRoutes: false,
        advertiseStaticRoutes: false,
        description: "string",
        displayName: "string",
        edgeClusterId: "string",
        enableRouterAdvertisement: false,
        failoverMode: "string",
        firewallSections: [{
            isValid: false,
            targetDisplayName: "string",
            targetId: "string",
            targetType: "string",
        }],
        logicalTier1RouterId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:LogicalTier1Router
    properties:
        advertiseConnectedRoutes: false
        advertiseLbSnatIpRoutes: false
        advertiseLbVipRoutes: false
        advertiseNatRoutes: false
        advertiseStaticRoutes: false
        description: string
        displayName: string
        edgeClusterId: string
        enableRouterAdvertisement: false
        failoverMode: string
        firewallSections:
            - isValid: false
              targetDisplayName: string
              targetId: string
              targetType: string
        logicalTier1RouterId: string
        tags:
            - scope: string
              tag: string
    

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

    AdvertiseConnectedRoutes bool
    Enable the router advertisement for all NSX connected routes
    AdvertiseLbSnatIpRoutes bool
    Enable the router advertisement for LB SNAT IP routes
    AdvertiseLbVipRoutes bool
    Enable the router advertisement for LB VIP routes
    AdvertiseNatRoutes bool
    Enable the router advertisement for NAT routes
    AdvertiseStaticRoutes bool
    Enable the router advertisement for static routes
    Description string
    Description of the resource.
    DisplayName string
    Display name, defaults to ID if not set.
    EdgeClusterId string
    Edge Cluster ID for the logical Tier1 router.
    EnableRouterAdvertisement bool
    Enable the router advertisement
    FailoverMode string
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    FirewallSections List<LogicalTier1RouterFirewallSection>
    (Optional) The list of firewall sections for this router
    LogicalTier1RouterId string
    ID of the logical Tier1 router.
    Tags List<LogicalTier1RouterTag>
    A list of scope + tag pairs to associate with this logical Tier1 router.
    AdvertiseConnectedRoutes bool
    Enable the router advertisement for all NSX connected routes
    AdvertiseLbSnatIpRoutes bool
    Enable the router advertisement for LB SNAT IP routes
    AdvertiseLbVipRoutes bool
    Enable the router advertisement for LB VIP routes
    AdvertiseNatRoutes bool
    Enable the router advertisement for NAT routes
    AdvertiseStaticRoutes bool
    Enable the router advertisement for static routes
    Description string
    Description of the resource.
    DisplayName string
    Display name, defaults to ID if not set.
    EdgeClusterId string
    Edge Cluster ID for the logical Tier1 router.
    EnableRouterAdvertisement bool
    Enable the router advertisement
    FailoverMode string
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    FirewallSections []LogicalTier1RouterFirewallSectionArgs
    (Optional) The list of firewall sections for this router
    LogicalTier1RouterId string
    ID of the logical Tier1 router.
    Tags []LogicalTier1RouterTagArgs
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertiseConnectedRoutes Boolean
    Enable the router advertisement for all NSX connected routes
    advertiseLbSnatIpRoutes Boolean
    Enable the router advertisement for LB SNAT IP routes
    advertiseLbVipRoutes Boolean
    Enable the router advertisement for LB VIP routes
    advertiseNatRoutes Boolean
    Enable the router advertisement for NAT routes
    advertiseStaticRoutes Boolean
    Enable the router advertisement for static routes
    description String
    Description of the resource.
    displayName String
    Display name, defaults to ID if not set.
    edgeClusterId String
    Edge Cluster ID for the logical Tier1 router.
    enableRouterAdvertisement Boolean
    Enable the router advertisement
    failoverMode String
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewallSections List<LogicalTier1RouterFirewallSection>
    (Optional) The list of firewall sections for this router
    logicalTier1RouterId String
    ID of the logical Tier1 router.
    tags List<LogicalTier1RouterTag>
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertiseConnectedRoutes boolean
    Enable the router advertisement for all NSX connected routes
    advertiseLbSnatIpRoutes boolean
    Enable the router advertisement for LB SNAT IP routes
    advertiseLbVipRoutes boolean
    Enable the router advertisement for LB VIP routes
    advertiseNatRoutes boolean
    Enable the router advertisement for NAT routes
    advertiseStaticRoutes boolean
    Enable the router advertisement for static routes
    description string
    Description of the resource.
    displayName string
    Display name, defaults to ID if not set.
    edgeClusterId string
    Edge Cluster ID for the logical Tier1 router.
    enableRouterAdvertisement boolean
    Enable the router advertisement
    failoverMode string
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewallSections LogicalTier1RouterFirewallSection[]
    (Optional) The list of firewall sections for this router
    logicalTier1RouterId string
    ID of the logical Tier1 router.
    tags LogicalTier1RouterTag[]
    A list of scope + tag pairs to associate with this logical Tier1 router.
    bool
    Enable the router advertisement for all NSX connected routes
    bool
    Enable the router advertisement for LB SNAT IP routes
    bool
    Enable the router advertisement for LB VIP routes
    bool
    Enable the router advertisement for NAT routes
    bool
    Enable the router advertisement for static routes
    description str
    Description of the resource.
    display_name str
    Display name, defaults to ID if not set.
    edge_cluster_id str
    Edge Cluster ID for the logical Tier1 router.
    enable_router_advertisement bool
    Enable the router advertisement
    failover_mode str
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewall_sections Sequence[LogicalTier1RouterFirewallSectionArgs]
    (Optional) The list of firewall sections for this router
    logical_tier1_router_id str
    ID of the logical Tier1 router.
    tags Sequence[LogicalTier1RouterTagArgs]
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertiseConnectedRoutes Boolean
    Enable the router advertisement for all NSX connected routes
    advertiseLbSnatIpRoutes Boolean
    Enable the router advertisement for LB SNAT IP routes
    advertiseLbVipRoutes Boolean
    Enable the router advertisement for LB VIP routes
    advertiseNatRoutes Boolean
    Enable the router advertisement for NAT routes
    advertiseStaticRoutes Boolean
    Enable the router advertisement for static routes
    description String
    Description of the resource.
    displayName String
    Display name, defaults to ID if not set.
    edgeClusterId String
    Edge Cluster ID for the logical Tier1 router.
    enableRouterAdvertisement Boolean
    Enable the router advertisement
    failoverMode String
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewallSections List<Property Map>
    (Optional) The list of firewall sections for this router
    logicalTier1RouterId String
    ID of the logical Tier1 router.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this logical Tier1 router.

    Outputs

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

    AdvertiseConfigRevision double
    Indicates current revision number of the advertisement configuration 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.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    AdvertiseConfigRevision float64
    Indicates current revision number of the advertisement configuration 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.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertiseConfigRevision Double
    Indicates current revision number of the advertisement configuration 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.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertiseConfigRevision number
    Indicates current revision number of the advertisement configuration 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.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    float
    Indicates current revision number of the advertisement configuration 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.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertiseConfigRevision Number
    Indicates current revision number of the advertisement configuration 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.
    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 LogicalTier1Router Resource

    Get an existing LogicalTier1Router 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?: LogicalTier1RouterState, opts?: CustomResourceOptions): LogicalTier1Router
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            advertise_config_revision: Optional[float] = None,
            advertise_connected_routes: Optional[bool] = None,
            advertise_lb_snat_ip_routes: Optional[bool] = None,
            advertise_lb_vip_routes: Optional[bool] = None,
            advertise_nat_routes: Optional[bool] = None,
            advertise_static_routes: Optional[bool] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            edge_cluster_id: Optional[str] = None,
            enable_router_advertisement: Optional[bool] = None,
            failover_mode: Optional[str] = None,
            firewall_sections: Optional[Sequence[LogicalTier1RouterFirewallSectionArgs]] = None,
            logical_tier1_router_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[LogicalTier1RouterTagArgs]] = None) -> LogicalTier1Router
    func GetLogicalTier1Router(ctx *Context, name string, id IDInput, state *LogicalTier1RouterState, opts ...ResourceOption) (*LogicalTier1Router, error)
    public static LogicalTier1Router Get(string name, Input<string> id, LogicalTier1RouterState? state, CustomResourceOptions? opts = null)
    public static LogicalTier1Router get(String name, Output<String> id, LogicalTier1RouterState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:LogicalTier1Router    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdvertiseConfigRevision double
    Indicates current revision number of the advertisement configuration object as seen by NSX-T API server. This attribute can be useful for debugging.
    AdvertiseConnectedRoutes bool
    Enable the router advertisement for all NSX connected routes
    AdvertiseLbSnatIpRoutes bool
    Enable the router advertisement for LB SNAT IP routes
    AdvertiseLbVipRoutes bool
    Enable the router advertisement for LB VIP routes
    AdvertiseNatRoutes bool
    Enable the router advertisement for NAT routes
    AdvertiseStaticRoutes bool
    Enable the router advertisement for static routes
    Description string
    Description of the resource.
    DisplayName string
    Display name, defaults to ID if not set.
    EdgeClusterId string
    Edge Cluster ID for the logical Tier1 router.
    EnableRouterAdvertisement bool
    Enable the router advertisement
    FailoverMode string
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    FirewallSections List<LogicalTier1RouterFirewallSection>
    (Optional) The list of firewall sections for this router
    LogicalTier1RouterId string
    ID of the logical Tier1 router.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<LogicalTier1RouterTag>
    A list of scope + tag pairs to associate with this logical Tier1 router.
    AdvertiseConfigRevision float64
    Indicates current revision number of the advertisement configuration object as seen by NSX-T API server. This attribute can be useful for debugging.
    AdvertiseConnectedRoutes bool
    Enable the router advertisement for all NSX connected routes
    AdvertiseLbSnatIpRoutes bool
    Enable the router advertisement for LB SNAT IP routes
    AdvertiseLbVipRoutes bool
    Enable the router advertisement for LB VIP routes
    AdvertiseNatRoutes bool
    Enable the router advertisement for NAT routes
    AdvertiseStaticRoutes bool
    Enable the router advertisement for static routes
    Description string
    Description of the resource.
    DisplayName string
    Display name, defaults to ID if not set.
    EdgeClusterId string
    Edge Cluster ID for the logical Tier1 router.
    EnableRouterAdvertisement bool
    Enable the router advertisement
    FailoverMode string
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    FirewallSections []LogicalTier1RouterFirewallSectionArgs
    (Optional) The list of firewall sections for this router
    LogicalTier1RouterId string
    ID of the logical Tier1 router.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []LogicalTier1RouterTagArgs
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertiseConfigRevision Double
    Indicates current revision number of the advertisement configuration object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertiseConnectedRoutes Boolean
    Enable the router advertisement for all NSX connected routes
    advertiseLbSnatIpRoutes Boolean
    Enable the router advertisement for LB SNAT IP routes
    advertiseLbVipRoutes Boolean
    Enable the router advertisement for LB VIP routes
    advertiseNatRoutes Boolean
    Enable the router advertisement for NAT routes
    advertiseStaticRoutes Boolean
    Enable the router advertisement for static routes
    description String
    Description of the resource.
    displayName String
    Display name, defaults to ID if not set.
    edgeClusterId String
    Edge Cluster ID for the logical Tier1 router.
    enableRouterAdvertisement Boolean
    Enable the router advertisement
    failoverMode String
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewallSections List<LogicalTier1RouterFirewallSection>
    (Optional) The list of firewall sections for this router
    logicalTier1RouterId String
    ID of the logical Tier1 router.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<LogicalTier1RouterTag>
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertiseConfigRevision number
    Indicates current revision number of the advertisement configuration object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertiseConnectedRoutes boolean
    Enable the router advertisement for all NSX connected routes
    advertiseLbSnatIpRoutes boolean
    Enable the router advertisement for LB SNAT IP routes
    advertiseLbVipRoutes boolean
    Enable the router advertisement for LB VIP routes
    advertiseNatRoutes boolean
    Enable the router advertisement for NAT routes
    advertiseStaticRoutes boolean
    Enable the router advertisement for static routes
    description string
    Description of the resource.
    displayName string
    Display name, defaults to ID if not set.
    edgeClusterId string
    Edge Cluster ID for the logical Tier1 router.
    enableRouterAdvertisement boolean
    Enable the router advertisement
    failoverMode string
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewallSections LogicalTier1RouterFirewallSection[]
    (Optional) The list of firewall sections for this router
    logicalTier1RouterId string
    ID of the logical Tier1 router.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags LogicalTier1RouterTag[]
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertise_config_revision float
    Indicates current revision number of the advertisement configuration object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertise_connected_routes bool
    Enable the router advertisement for all NSX connected routes
    advertise_lb_snat_ip_routes bool
    Enable the router advertisement for LB SNAT IP routes
    advertise_lb_vip_routes bool
    Enable the router advertisement for LB VIP routes
    advertise_nat_routes bool
    Enable the router advertisement for NAT routes
    advertise_static_routes bool
    Enable the router advertisement for static routes
    description str
    Description of the resource.
    display_name str
    Display name, defaults to ID if not set.
    edge_cluster_id str
    Edge Cluster ID for the logical Tier1 router.
    enable_router_advertisement bool
    Enable the router advertisement
    failover_mode str
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewall_sections Sequence[LogicalTier1RouterFirewallSectionArgs]
    (Optional) The list of firewall sections for this router
    logical_tier1_router_id str
    ID of the logical Tier1 router.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[LogicalTier1RouterTagArgs]
    A list of scope + tag pairs to associate with this logical Tier1 router.
    advertiseConfigRevision Number
    Indicates current revision number of the advertisement configuration object as seen by NSX-T API server. This attribute can be useful for debugging.
    advertiseConnectedRoutes Boolean
    Enable the router advertisement for all NSX connected routes
    advertiseLbSnatIpRoutes Boolean
    Enable the router advertisement for LB SNAT IP routes
    advertiseLbVipRoutes Boolean
    Enable the router advertisement for LB VIP routes
    advertiseNatRoutes Boolean
    Enable the router advertisement for NAT routes
    advertiseStaticRoutes Boolean
    Enable the router advertisement for static routes
    description String
    Description of the resource.
    displayName String
    Display name, defaults to ID if not set.
    edgeClusterId String
    Edge Cluster ID for the logical Tier1 router.
    enableRouterAdvertisement Boolean
    Enable the router advertisement
    failoverMode String
    This failover mode determines, whether the preferred service router instance for given logical router will preempt the peer. Note - It can be specified if and only if logical router is ACTIVE_STANDBY and NON_PREEMPTIVE mode is supported only for a Tier1 logical router. For ACTIVE_ACTIVE logical routers, this field must not be populated
    firewallSections List<Property Map>
    (Optional) The list of firewall sections for this router
    logicalTier1RouterId String
    ID of the logical Tier1 router.
    revision Number
    Indicates current revision number 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 logical Tier1 router.

    Supporting Types

    LogicalTier1RouterFirewallSection, LogicalTier1RouterFirewallSectionArgs

    IsValid bool
    A boolean flag which will be set to false if the referenced NSX resource has been deleted
    TargetDisplayName string
    Display name of the NSX resource
    TargetId string
    Identifier of the NSX resource
    TargetType string
    Type of the NSX resource
    IsValid bool
    A boolean flag which will be set to false if the referenced NSX resource has been deleted
    TargetDisplayName string
    Display name of the NSX resource
    TargetId string
    Identifier of the NSX resource
    TargetType string
    Type of the NSX resource
    isValid Boolean
    A boolean flag which will be set to false if the referenced NSX resource has been deleted
    targetDisplayName String
    Display name of the NSX resource
    targetId String
    Identifier of the NSX resource
    targetType String
    Type of the NSX resource
    isValid boolean
    A boolean flag which will be set to false if the referenced NSX resource has been deleted
    targetDisplayName string
    Display name of the NSX resource
    targetId string
    Identifier of the NSX resource
    targetType string
    Type of the NSX resource
    is_valid bool
    A boolean flag which will be set to false if the referenced NSX resource has been deleted
    target_display_name str
    Display name of the NSX resource
    target_id str
    Identifier of the NSX resource
    target_type str
    Type of the NSX resource
    isValid Boolean
    A boolean flag which will be set to false if the referenced NSX resource has been deleted
    targetDisplayName String
    Display name of the NSX resource
    targetId String
    Identifier of the NSX resource
    targetType String
    Type of the NSX resource

    LogicalTier1RouterTag, LogicalTier1RouterTagArgs

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

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware