1. Packages
  2. Linode
  3. API Docs
  4. NodeBalancer
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

linode.NodeBalancer

Explore with Pulumi AI

linode logo
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Provides a Linode NodeBalancer resource. This can be used to create, modify, and delete Linodes NodeBalancers in Linode’s managed load balancer service. For more information, see Getting Started with NodeBalancers and the Linode APIv4 docs.

    Example Usage

    The following example shows how one might use this resource to configure a NodeBalancer.

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const foobar = new linode.NodeBalancer("foobar", {
        clientConnThrottle: 20,
        label: "mynodebalancer",
        region: "us-east",
        tags: ["foobar"],
    });
    
    import pulumi
    import pulumi_linode as linode
    
    foobar = linode.NodeBalancer("foobar",
        client_conn_throttle=20,
        label="mynodebalancer",
        region="us-east",
        tags=["foobar"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.NewNodeBalancer(ctx, "foobar", &linode.NodeBalancerArgs{
    			ClientConnThrottle: pulumi.Int(20),
    			Label:              pulumi.String("mynodebalancer"),
    			Region:             pulumi.String("us-east"),
    			Tags: pulumi.StringArray{
    				pulumi.String("foobar"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var foobar = new Linode.NodeBalancer("foobar", new()
        {
            ClientConnThrottle = 20,
            Label = "mynodebalancer",
            Region = "us-east",
            Tags = new[]
            {
                "foobar",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.NodeBalancer;
    import com.pulumi.linode.NodeBalancerArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var foobar = new NodeBalancer("foobar", NodeBalancerArgs.builder()        
                .clientConnThrottle(20)
                .label("mynodebalancer")
                .region("us-east")
                .tags("foobar")
                .build());
    
        }
    }
    
    resources:
      foobar:
        type: linode:NodeBalancer
        properties:
          clientConnThrottle: 20
          label: mynodebalancer
          region: us-east
          tags:
            - foobar
    

    Create NodeBalancer Resource

    new NodeBalancer(name: string, args?: NodeBalancerArgs, opts?: CustomResourceOptions);
    @overload
    def NodeBalancer(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     client_conn_throttle: Optional[int] = None,
                     firewall_id: Optional[int] = None,
                     label: Optional[str] = None,
                     region: Optional[str] = None,
                     tags: Optional[Sequence[str]] = None)
    @overload
    def NodeBalancer(resource_name: str,
                     args: Optional[NodeBalancerArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    func NewNodeBalancer(ctx *Context, name string, args *NodeBalancerArgs, opts ...ResourceOption) (*NodeBalancer, error)
    public NodeBalancer(string name, NodeBalancerArgs? args = null, CustomResourceOptions? opts = null)
    public NodeBalancer(String name, NodeBalancerArgs args)
    public NodeBalancer(String name, NodeBalancerArgs args, CustomResourceOptions options)
    
    type: linode:NodeBalancer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NodeBalancerArgs
    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 NodeBalancerArgs
    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 NodeBalancerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NodeBalancerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NodeBalancerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    NodeBalancer Resource Properties

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

    Inputs

    The NodeBalancer resource accepts the following input properties:

    ClientConnThrottle int
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    FirewallId int
    ID for the firewall you'd like to use with this NodeBalancer.
    Label string
    The label of the Linode NodeBalancer
    Region string
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    Tags List<string>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    ClientConnThrottle int
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    FirewallId int
    ID for the firewall you'd like to use with this NodeBalancer.
    Label string
    The label of the Linode NodeBalancer
    Region string
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    Tags []string
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    clientConnThrottle Integer
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    firewallId Integer
    ID for the firewall you'd like to use with this NodeBalancer.
    label String
    The label of the Linode NodeBalancer
    region String
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags List<String>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    clientConnThrottle number
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    firewallId number
    ID for the firewall you'd like to use with this NodeBalancer.
    label string
    The label of the Linode NodeBalancer
    region string
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags string[]
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    client_conn_throttle int
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    firewall_id int
    ID for the firewall you'd like to use with this NodeBalancer.
    label str
    The label of the Linode NodeBalancer
    region str
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags Sequence[str]
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    clientConnThrottle Number
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    firewallId Number
    ID for the firewall you'd like to use with this NodeBalancer.
    label String
    The label of the Linode NodeBalancer
    region String
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags List<String>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.

    Outputs

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

    Created string
    When this firewall was created.
    Firewalls List<NodeBalancerFirewall>
    A list of Firewalls assigned to this NodeBalancer.
    Hostname string
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    Id string
    The provider-assigned unique ID for this managed resource.
    Ipv4 string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6 string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Transfers List<NodeBalancerTransfer>
    Information about the amount of transfer this NodeBalancer has had so far this month.
    Updated string
    When this firewall was last updated.
    Created string
    When this firewall was created.
    Firewalls []NodeBalancerFirewall
    A list of Firewalls assigned to this NodeBalancer.
    Hostname string
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    Id string
    The provider-assigned unique ID for this managed resource.
    Ipv4 string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6 string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Transfers []NodeBalancerTransfer
    Information about the amount of transfer this NodeBalancer has had so far this month.
    Updated string
    When this firewall was last updated.
    created String
    When this firewall was created.
    firewalls List<NodeBalancerFirewall>
    A list of Firewalls assigned to this NodeBalancer.
    hostname String
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    id String
    The provider-assigned unique ID for this managed resource.
    ipv4 String
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 String
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    transfers List<NodeBalancerTransfer>
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated String
    When this firewall was last updated.
    created string
    When this firewall was created.
    firewalls NodeBalancerFirewall[]
    A list of Firewalls assigned to this NodeBalancer.
    hostname string
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    id string
    The provider-assigned unique ID for this managed resource.
    ipv4 string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    transfers NodeBalancerTransfer[]
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated string
    When this firewall was last updated.
    created str
    When this firewall was created.
    firewalls Sequence[NodeBalancerFirewall]
    A list of Firewalls assigned to this NodeBalancer.
    hostname str
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    id str
    The provider-assigned unique ID for this managed resource.
    ipv4 str
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 str
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    transfers Sequence[NodeBalancerTransfer]
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated str
    When this firewall was last updated.
    created String
    When this firewall was created.
    firewalls List<Property Map>
    A list of Firewalls assigned to this NodeBalancer.
    hostname String
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    id String
    The provider-assigned unique ID for this managed resource.
    ipv4 String
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 String
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    transfers List<Property Map>
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated String
    When this firewall was last updated.

    Look up Existing NodeBalancer Resource

    Get an existing NodeBalancer 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?: NodeBalancerState, opts?: CustomResourceOptions): NodeBalancer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            client_conn_throttle: Optional[int] = None,
            created: Optional[str] = None,
            firewall_id: Optional[int] = None,
            firewalls: Optional[Sequence[NodeBalancerFirewallArgs]] = None,
            hostname: Optional[str] = None,
            ipv4: Optional[str] = None,
            ipv6: Optional[str] = None,
            label: Optional[str] = None,
            region: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            transfers: Optional[Sequence[NodeBalancerTransferArgs]] = None,
            updated: Optional[str] = None) -> NodeBalancer
    func GetNodeBalancer(ctx *Context, name string, id IDInput, state *NodeBalancerState, opts ...ResourceOption) (*NodeBalancer, error)
    public static NodeBalancer Get(string name, Input<string> id, NodeBalancerState? state, CustomResourceOptions? opts = null)
    public static NodeBalancer get(String name, Output<String> id, NodeBalancerState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ClientConnThrottle int
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    Created string
    When this firewall was created.
    FirewallId int
    ID for the firewall you'd like to use with this NodeBalancer.
    Firewalls List<NodeBalancerFirewall>
    A list of Firewalls assigned to this NodeBalancer.
    Hostname string
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    Ipv4 string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6 string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Label string
    The label of the Linode NodeBalancer
    Region string
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    Tags List<string>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    Transfers List<NodeBalancerTransfer>
    Information about the amount of transfer this NodeBalancer has had so far this month.
    Updated string
    When this firewall was last updated.
    ClientConnThrottle int
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    Created string
    When this firewall was created.
    FirewallId int
    ID for the firewall you'd like to use with this NodeBalancer.
    Firewalls []NodeBalancerFirewallArgs
    A list of Firewalls assigned to this NodeBalancer.
    Hostname string
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    Ipv4 string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6 string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Label string
    The label of the Linode NodeBalancer
    Region string
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    Tags []string
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    Transfers []NodeBalancerTransferArgs
    Information about the amount of transfer this NodeBalancer has had so far this month.
    Updated string
    When this firewall was last updated.
    clientConnThrottle Integer
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    created String
    When this firewall was created.
    firewallId Integer
    ID for the firewall you'd like to use with this NodeBalancer.
    firewalls List<NodeBalancerFirewall>
    A list of Firewalls assigned to this NodeBalancer.
    hostname String
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    ipv4 String
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 String
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label String
    The label of the Linode NodeBalancer
    region String
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags List<String>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    transfers List<NodeBalancerTransfer>
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated String
    When this firewall was last updated.
    clientConnThrottle number
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    created string
    When this firewall was created.
    firewallId number
    ID for the firewall you'd like to use with this NodeBalancer.
    firewalls NodeBalancerFirewall[]
    A list of Firewalls assigned to this NodeBalancer.
    hostname string
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    ipv4 string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label string
    The label of the Linode NodeBalancer
    region string
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags string[]
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    transfers NodeBalancerTransfer[]
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated string
    When this firewall was last updated.
    client_conn_throttle int
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    created str
    When this firewall was created.
    firewall_id int
    ID for the firewall you'd like to use with this NodeBalancer.
    firewalls Sequence[NodeBalancerFirewallArgs]
    A list of Firewalls assigned to this NodeBalancer.
    hostname str
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    ipv4 str
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 str
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label str
    The label of the Linode NodeBalancer
    region str
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags Sequence[str]
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    transfers Sequence[NodeBalancerTransferArgs]
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated str
    When this firewall was last updated.
    clientConnThrottle Number
    Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
    created String
    When this firewall was created.
    firewallId Number
    ID for the firewall you'd like to use with this NodeBalancer.
    firewalls List<Property Map>
    A list of Firewalls assigned to this NodeBalancer.
    hostname String
    This NodeBalancer's hostname, ending with .nodebalancer.linode.com
    ipv4 String
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6 String
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label String
    The label of the Linode NodeBalancer
    region String
    The region where this NodeBalancer will be deployed. Examples are "us-east", "us-west", "ap-south", etc. See all regions here. Changing region forces the creation of a new Linode NodeBalancer..


    tags List<String>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    transfers List<Property Map>
    Information about the amount of transfer this NodeBalancer has had so far this month.
    updated String
    When this firewall was last updated.

    Supporting Types

    NodeBalancerFirewall, NodeBalancerFirewallArgs

    Created string
    When this firewall was created.
    Id int
    (Required) The Firewall's ID.
    InboundPolicy string
    The default behavior for inbound traffic. (ACCEPT, DROP)
    Inbounds List<NodeBalancerFirewallInbound>
    Label string
    The label of the Linode NodeBalancer
    OutboundPolicy string
    The default behavior for outbound traffic. (ACCEPT, DROP)
    Outbounds List<NodeBalancerFirewallOutbound>
    Status string
    The status of the firewall. (enabled, disabled, deleted)
    Tags List<string>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    Updated string
    When this firewall was last updated.
    Created string
    When this firewall was created.
    Id int
    (Required) The Firewall's ID.
    InboundPolicy string
    The default behavior for inbound traffic. (ACCEPT, DROP)
    Inbounds []NodeBalancerFirewallInbound
    Label string
    The label of the Linode NodeBalancer
    OutboundPolicy string
    The default behavior for outbound traffic. (ACCEPT, DROP)
    Outbounds []NodeBalancerFirewallOutbound
    Status string
    The status of the firewall. (enabled, disabled, deleted)
    Tags []string
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    Updated string
    When this firewall was last updated.
    created String
    When this firewall was created.
    id Integer
    (Required) The Firewall's ID.
    inboundPolicy String
    The default behavior for inbound traffic. (ACCEPT, DROP)
    inbounds List<NodeBalancerFirewallInbound>
    label String
    The label of the Linode NodeBalancer
    outboundPolicy String
    The default behavior for outbound traffic. (ACCEPT, DROP)
    outbounds List<NodeBalancerFirewallOutbound>
    status String
    The status of the firewall. (enabled, disabled, deleted)
    tags List<String>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    updated String
    When this firewall was last updated.
    created string
    When this firewall was created.
    id number
    (Required) The Firewall's ID.
    inboundPolicy string
    The default behavior for inbound traffic. (ACCEPT, DROP)
    inbounds NodeBalancerFirewallInbound[]
    label string
    The label of the Linode NodeBalancer
    outboundPolicy string
    The default behavior for outbound traffic. (ACCEPT, DROP)
    outbounds NodeBalancerFirewallOutbound[]
    status string
    The status of the firewall. (enabled, disabled, deleted)
    tags string[]
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    updated string
    When this firewall was last updated.
    created str
    When this firewall was created.
    id int
    (Required) The Firewall's ID.
    inbound_policy str
    The default behavior for inbound traffic. (ACCEPT, DROP)
    inbounds Sequence[NodeBalancerFirewallInbound]
    label str
    The label of the Linode NodeBalancer
    outbound_policy str
    The default behavior for outbound traffic. (ACCEPT, DROP)
    outbounds Sequence[NodeBalancerFirewallOutbound]
    status str
    The status of the firewall. (enabled, disabled, deleted)
    tags Sequence[str]
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    updated str
    When this firewall was last updated.
    created String
    When this firewall was created.
    id Number
    (Required) The Firewall's ID.
    inboundPolicy String
    The default behavior for inbound traffic. (ACCEPT, DROP)
    inbounds List<Property Map>
    label String
    The label of the Linode NodeBalancer
    outboundPolicy String
    The default behavior for outbound traffic. (ACCEPT, DROP)
    outbounds List<Property Map>
    status String
    The status of the firewall. (enabled, disabled, deleted)
    tags List<String>
    A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
    updated String
    When this firewall was last updated.

    NodeBalancerFirewallInbound, NodeBalancerFirewallInboundArgs

    Action string
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    Ipv4s List<string>
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6s List<string>
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Label string
    The label of the Linode NodeBalancer
    Ports string
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    Protocol string
    The network protocol this rule controls. (TCP, UDP, ICMP)
    Action string
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    Ipv4s []string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6s []string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Label string
    The label of the Linode NodeBalancer
    Ports string
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    Protocol string
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action String
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s List<String>
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s List<String>
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label String
    The label of the Linode NodeBalancer
    ports String
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol String
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action string
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s string[]
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s string[]
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label string
    The label of the Linode NodeBalancer
    ports string
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol string
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action str
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s Sequence[str]
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s Sequence[str]
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label str
    The label of the Linode NodeBalancer
    ports str
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol str
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action String
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s List<String>
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s List<String>
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label String
    The label of the Linode NodeBalancer
    ports String
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol String
    The network protocol this rule controls. (TCP, UDP, ICMP)

    NodeBalancerFirewallOutbound, NodeBalancerFirewallOutboundArgs

    Action string
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    Ipv4s List<string>
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6s List<string>
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Label string
    The label of the Linode NodeBalancer
    Ports string
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    Protocol string
    The network protocol this rule controls. (TCP, UDP, ICMP)
    Action string
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    Ipv4s []string
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    Ipv6s []string
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    Label string
    The label of the Linode NodeBalancer
    Ports string
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    Protocol string
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action String
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s List<String>
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s List<String>
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label String
    The label of the Linode NodeBalancer
    ports String
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol String
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action string
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s string[]
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s string[]
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label string
    The label of the Linode NodeBalancer
    ports string
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol string
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action str
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s Sequence[str]
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s Sequence[str]
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label str
    The label of the Linode NodeBalancer
    ports str
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol str
    The network protocol this rule controls. (TCP, UDP, ICMP)
    action String
    Controls whether traffic is accepted or dropped by this rule. Overrides the Firewall’s inbound_policy if this is an inbound rule, or the outbound_policy if this is an outbound rule.
    ipv4s List<String>
    A list of IPv4 addresses or networks. Must be in IP/mask format.
    ipv6s List<String>
    A list of IPv6 addresses or networks. Must be in IP/mask format.
    label String
    The label of the Linode NodeBalancer
    ports String
    A string representation of ports and/or port ranges (i.e. "443" or "80-90, 91").
    protocol String
    The network protocol this rule controls. (TCP, UDP, ICMP)

    NodeBalancerTransfer, NodeBalancerTransferArgs

    In double
    The total transfer, in MB, used by this NodeBalancer for the current month
    Out double
    The total inbound transfer, in MB, used for this NodeBalancer for the current month
    Total double
    The total outbound transfer, in MB, used for this NodeBalancer for the current month
    In float64
    The total transfer, in MB, used by this NodeBalancer for the current month
    Out float64
    The total inbound transfer, in MB, used for this NodeBalancer for the current month
    Total float64
    The total outbound transfer, in MB, used for this NodeBalancer for the current month
    in Double
    The total transfer, in MB, used by this NodeBalancer for the current month
    out Double
    The total inbound transfer, in MB, used for this NodeBalancer for the current month
    total Double
    The total outbound transfer, in MB, used for this NodeBalancer for the current month
    in number
    The total transfer, in MB, used by this NodeBalancer for the current month
    out number
    The total inbound transfer, in MB, used for this NodeBalancer for the current month
    total number
    The total outbound transfer, in MB, used for this NodeBalancer for the current month
    in_ float
    The total transfer, in MB, used by this NodeBalancer for the current month
    out float
    The total inbound transfer, in MB, used for this NodeBalancer for the current month
    total float
    The total outbound transfer, in MB, used for this NodeBalancer for the current month
    in Number
    The total transfer, in MB, used by this NodeBalancer for the current month
    out Number
    The total inbound transfer, in MB, used for this NodeBalancer for the current month
    total Number
    The total outbound transfer, in MB, used for this NodeBalancer for the current month

    Import

    Linodes NodeBalancers can be imported using the Linode NodeBalancer id, e.g.

    $ pulumi import linode:index/nodeBalancer:NodeBalancer mynodebalancer 1234567
    

    Package Details

    Repository
    Linode pulumi/pulumi-linode
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the linode Terraform Provider.
    linode logo
    Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi