linode.NodeBalancer
Explore with Pulumi AI
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", {
label: "mynodebalancer",
region: "us-east",
clientConnThrottle: 20,
tags: ["foobar"],
});
import pulumi
import pulumi_linode as linode
foobar = linode.NodeBalancer("foobar",
label="mynodebalancer",
region="us-east",
client_conn_throttle=20,
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{
Label: pulumi.String("mynodebalancer"),
Region: pulumi.String("us-east"),
ClientConnThrottle: pulumi.Int(20),
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()
{
Label = "mynodebalancer",
Region = "us-east",
ClientConnThrottle = 20,
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()
.label("mynodebalancer")
.region("us-east")
.clientConnThrottle(20)
.tags("foobar")
.build());
}
}
resources:
foobar:
type: linode:NodeBalancer
properties:
label: mynodebalancer
region: us-east
clientConnThrottle: 20
tags:
- foobar
Create NodeBalancer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NodeBalancer(name: string, args?: NodeBalancerArgs, opts?: CustomResourceOptions);
@overload
def NodeBalancer(resource_name: str,
args: Optional[NodeBalancerArgs] = None,
opts: Optional[ResourceOptions] = None)
@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)
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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var nodeBalancerResource = new Linode.NodeBalancer("nodeBalancerResource", new()
{
ClientConnThrottle = 0,
FirewallId = 0,
Label = "string",
Region = "string",
Tags = new[]
{
"string",
},
});
example, err := linode.NewNodeBalancer(ctx, "nodeBalancerResource", &linode.NodeBalancerArgs{
ClientConnThrottle: pulumi.Int(0),
FirewallId: pulumi.Int(0),
Label: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var nodeBalancerResource = new NodeBalancer("nodeBalancerResource", NodeBalancerArgs.builder()
.clientConnThrottle(0)
.firewallId(0)
.label("string")
.region("string")
.tags("string")
.build());
node_balancer_resource = linode.NodeBalancer("nodeBalancerResource",
client_conn_throttle=0,
firewall_id=0,
label="string",
region="string",
tags=["string"])
const nodeBalancerResource = new linode.NodeBalancer("nodeBalancerResource", {
clientConnThrottle: 0,
firewallId: 0,
label: "string",
region: "string",
tags: ["string"],
});
type: linode:NodeBalancer
properties:
clientConnThrottle: 0
firewallId: 0
label: string
region: string
tags:
- string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NodeBalancer resource accepts the following input properties:
- Client
Conn intThrottle - 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 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - List<string>
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- Client
Conn intThrottle - 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 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - []string
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- client
Conn IntegerThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- firewall
Id 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - List<String>
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- client
Conn numberThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- firewall
Id 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - string[]
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- client_
conn_ intthrottle - 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - Sequence[str]
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- client
Conn NumberThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- firewall
Id 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - 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<Node
Balancer Firewall> - 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<Node
Balancer Transfer> - 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
[]Node
Balancer Firewall - 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
[]Node
Balancer Transfer - 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<Node
Balancer Firewall> - 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<Node
Balancer Transfer> - 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
Node
Balancer Firewall[] - 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
Node
Balancer Transfer[] - 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[Node
Balancer Firewall] - 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[Node
Balancer Transfer] - 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.
- Client
Conn intThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- Created string
- When this firewall was created.
- Firewall
Id int - ID for the firewall you'd like to use with this NodeBalancer.
- Firewalls
List<Node
Balancer Firewall> - 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - List<string>
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- Transfers
List<Node
Balancer Transfer> - Information about the amount of transfer this NodeBalancer has had so far this month.
- Updated string
- When this firewall was last updated.
- Client
Conn intThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- Created string
- When this firewall was created.
- Firewall
Id int - ID for the firewall you'd like to use with this NodeBalancer.
- Firewalls
[]Node
Balancer Firewall Args - 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - []string
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- Transfers
[]Node
Balancer Transfer Args - Information about the amount of transfer this NodeBalancer has had so far this month.
- Updated string
- When this firewall was last updated.
- client
Conn IntegerThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- created String
- When this firewall was created.
- firewall
Id Integer - ID for the firewall you'd like to use with this NodeBalancer.
- firewalls
List<Node
Balancer Firewall> - 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - List<String>
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- transfers
List<Node
Balancer Transfer> - Information about the amount of transfer this NodeBalancer has had so far this month.
- updated String
- When this firewall was last updated.
- client
Conn numberThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- created string
- When this firewall was created.
- firewall
Id number - ID for the firewall you'd like to use with this NodeBalancer.
- firewalls
Node
Balancer Firewall[] - 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - string[]
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- transfers
Node
Balancer Transfer[] - Information about the amount of transfer this NodeBalancer has had so far this month.
- updated string
- When this firewall was last updated.
- client_
conn_ intthrottle - 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[Node
Balancer Firewall Args] - 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - Sequence[str]
- A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
- transfers
Sequence[Node
Balancer Transfer Args] - Information about the amount of transfer this NodeBalancer has had so far this month.
- updated str
- When this firewall was last updated.
- client
Conn NumberThrottle - Throttle connections per second (0-20). Set to 0 (default) to disable throttling.
- created String
- When this firewall was created.
- firewall
Id 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. Changingregion
forces the creation of a new Linode NodeBalancer.. - 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.
- Inbound
Policy string - The default behavior for inbound traffic. (
ACCEPT
,DROP
) - Inbounds
List<Node
Balancer Firewall Inbound> - Label string
- The label of the Linode NodeBalancer
- Outbound
Policy string - The default behavior for outbound traffic. (
ACCEPT
,DROP
) - Outbounds
List<Node
Balancer Firewall Outbound> - Status string
- The status of the firewall. (
enabled
,disabled
,deleted
) - 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.
- Inbound
Policy string - The default behavior for inbound traffic. (
ACCEPT
,DROP
) - Inbounds
[]Node
Balancer Firewall Inbound - Label string
- The label of the Linode NodeBalancer
- Outbound
Policy string - The default behavior for outbound traffic. (
ACCEPT
,DROP
) - Outbounds
[]Node
Balancer Firewall Outbound - Status string
- The status of the firewall. (
enabled
,disabled
,deleted
) - []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.
- inbound
Policy String - The default behavior for inbound traffic. (
ACCEPT
,DROP
) - inbounds
List<Node
Balancer Firewall Inbound> - label String
- The label of the Linode NodeBalancer
- outbound
Policy String - The default behavior for outbound traffic. (
ACCEPT
,DROP
) - outbounds
List<Node
Balancer Firewall Outbound> - status String
- The status of the firewall. (
enabled
,disabled
,deleted
) - 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.
- inbound
Policy string - The default behavior for inbound traffic. (
ACCEPT
,DROP
) - inbounds
Node
Balancer Firewall Inbound[] - label string
- The label of the Linode NodeBalancer
- outbound
Policy string - The default behavior for outbound traffic. (
ACCEPT
,DROP
) - outbounds
Node
Balancer Firewall Outbound[] - status string
- The status of the firewall. (
enabled
,disabled
,deleted
) - 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[Node
Balancer Firewall Inbound] - label str
- The label of the Linode NodeBalancer
- outbound_
policy str - The default behavior for outbound traffic. (
ACCEPT
,DROP
) - outbounds
Sequence[Node
Balancer Firewall Outbound] - status str
- The status of the firewall. (
enabled
,disabled
,deleted
) - 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.
- inbound
Policy String - The default behavior for inbound traffic. (
ACCEPT
,DROP
) - inbounds List<Property Map>
- label String
- The label of the Linode NodeBalancer
- outbound
Policy String - The default behavior for outbound traffic. (
ACCEPT
,DROP
) - outbounds List<Property Map>
- status String
- The status of the firewall. (
enabled
,disabled
,deleted
) - 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.
- Description string
- 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.
- Description string
- 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.
- description String
- 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.
- description string
- 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.
- description str
- 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.
- description String
- 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.
- Description string
- 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.
- Description string
- 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.
- description String
- 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.
- description string
- 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.
- description str
- 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.
- description String
- 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
Import
Linodes NodeBalancers can be imported using the Linode NodeBalancer id
, e.g.
$ pulumi import linode:index/nodeBalancer:NodeBalancer mynodebalancer 1234567
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linode
Terraform Provider.