published on Thursday, Mar 19, 2026 by Pulumi
published on Thursday, Mar 19, 2026 by Pulumi
f5bigip.ltm.Node Manages a node configuration
For resources should be named with their full path.The full path is the combination of the partition + name of the resource( example: /Common/my-node ) or partition + Direcroty + name of the resource ( example: /Common/test/my-node ).
When including directory in full path we have to make sure it is created in the given partition before using it.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const node = new f5bigip.ltm.Node("node", {
name: "/Common/terraform_node1",
address: "192.168.30.1",
connectionLimit: 0,
dynamicRatio: 1,
monitor: "/Common/icmp",
description: "Test-Node",
rateLimit: "disabled",
fqdn: {
addressFamily: "ipv4",
interval: "3000",
},
});
import pulumi
import pulumi_f5bigip as f5bigip
node = f5bigip.ltm.Node("node",
name="/Common/terraform_node1",
address="192.168.30.1",
connection_limit=0,
dynamic_ratio=1,
monitor="/Common/icmp",
description="Test-Node",
rate_limit="disabled",
fqdn={
"address_family": "ipv4",
"interval": "3000",
})
package main
import (
"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ltm.NewNode(ctx, "node", <m.NodeArgs{
Name: pulumi.String("/Common/terraform_node1"),
Address: pulumi.String("192.168.30.1"),
ConnectionLimit: pulumi.Int(0),
DynamicRatio: pulumi.Int(1),
Monitor: pulumi.String("/Common/icmp"),
Description: pulumi.String("Test-Node"),
RateLimit: pulumi.String("disabled"),
Fqdn: <m.NodeFqdnArgs{
AddressFamily: pulumi.String("ipv4"),
Interval: pulumi.String("3000"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
return await Deployment.RunAsync(() =>
{
var node = new F5BigIP.Ltm.Node("node", new()
{
Name = "/Common/terraform_node1",
Address = "192.168.30.1",
ConnectionLimit = 0,
DynamicRatio = 1,
Monitor = "/Common/icmp",
Description = "Test-Node",
RateLimit = "disabled",
Fqdn = new F5BigIP.Ltm.Inputs.NodeFqdnArgs
{
AddressFamily = "ipv4",
Interval = "3000",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.Node;
import com.pulumi.f5bigip.ltm.NodeArgs;
import com.pulumi.f5bigip.ltm.inputs.NodeFqdnArgs;
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 node = new Node("node", NodeArgs.builder()
.name("/Common/terraform_node1")
.address("192.168.30.1")
.connectionLimit(0)
.dynamicRatio(1)
.monitor("/Common/icmp")
.description("Test-Node")
.rateLimit("disabled")
.fqdn(NodeFqdnArgs.builder()
.addressFamily("ipv4")
.interval("3000")
.build())
.build());
}
}
resources:
node:
type: f5bigip:ltm:Node
properties:
name: /Common/terraform_node1
address: 192.168.30.1
connectionLimit: '0'
dynamicRatio: '1'
monitor: /Common/icmp
description: Test-Node
rateLimit: disabled
fqdn:
addressFamily: ipv4
interval: '3000'
Create Node Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Node(name: string, args: NodeArgs, opts?: CustomResourceOptions);@overload
def Node(resource_name: str,
args: NodeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Node(resource_name: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
name: Optional[str] = None,
connection_limit: Optional[int] = None,
description: Optional[str] = None,
dynamic_ratio: Optional[int] = None,
fqdn: Optional[NodeFqdnArgs] = None,
monitor: Optional[str] = None,
rate_limit: Optional[str] = None,
ratio: Optional[int] = None,
session: Optional[str] = None,
state: Optional[str] = None)func NewNode(ctx *Context, name string, args NodeArgs, opts ...ResourceOption) (*Node, error)public Node(string name, NodeArgs args, CustomResourceOptions? opts = null)type: f5bigip:ltm:Node
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 NodeArgs
- 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 NodeArgs
- 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 NodeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NodeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NodeArgs
- 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 nodeResource = new F5BigIP.Ltm.Node("nodeResource", new()
{
Address = "string",
Name = "string",
ConnectionLimit = 0,
Description = "string",
DynamicRatio = 0,
Fqdn = new F5BigIP.Ltm.Inputs.NodeFqdnArgs
{
AddressFamily = "string",
Autopopulate = "string",
Downinterval = 0,
Interval = "string",
Name = "string",
},
Monitor = "string",
RateLimit = "string",
Ratio = 0,
Session = "string",
State = "string",
});
example, err := ltm.NewNode(ctx, "nodeResource", <m.NodeArgs{
Address: pulumi.String("string"),
Name: pulumi.String("string"),
ConnectionLimit: pulumi.Int(0),
Description: pulumi.String("string"),
DynamicRatio: pulumi.Int(0),
Fqdn: <m.NodeFqdnArgs{
AddressFamily: pulumi.String("string"),
Autopopulate: pulumi.String("string"),
Downinterval: pulumi.Int(0),
Interval: pulumi.String("string"),
Name: pulumi.String("string"),
},
Monitor: pulumi.String("string"),
RateLimit: pulumi.String("string"),
Ratio: pulumi.Int(0),
Session: pulumi.String("string"),
State: pulumi.String("string"),
})
var nodeResource = new Node("nodeResource", NodeArgs.builder()
.address("string")
.name("string")
.connectionLimit(0)
.description("string")
.dynamicRatio(0)
.fqdn(NodeFqdnArgs.builder()
.addressFamily("string")
.autopopulate("string")
.downinterval(0)
.interval("string")
.name("string")
.build())
.monitor("string")
.rateLimit("string")
.ratio(0)
.session("string")
.state("string")
.build());
node_resource = f5bigip.ltm.Node("nodeResource",
address="string",
name="string",
connection_limit=0,
description="string",
dynamic_ratio=0,
fqdn={
"address_family": "string",
"autopopulate": "string",
"downinterval": 0,
"interval": "string",
"name": "string",
},
monitor="string",
rate_limit="string",
ratio=0,
session="string",
state="string")
const nodeResource = new f5bigip.ltm.Node("nodeResource", {
address: "string",
name: "string",
connectionLimit: 0,
description: "string",
dynamicRatio: 0,
fqdn: {
addressFamily: "string",
autopopulate: "string",
downinterval: 0,
interval: "string",
name: "string",
},
monitor: "string",
rateLimit: "string",
ratio: 0,
session: "string",
state: "string",
});
type: f5bigip:ltm:Node
properties:
address: string
connectionLimit: 0
description: string
dynamicRatio: 0
fqdn:
addressFamily: string
autopopulate: string
downinterval: 0
interval: string
name: string
monitor: string
name: string
rateLimit: string
ratio: 0
session: string
state: string
Node 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 Node resource accepts the following input properties:
- Address string
- IP or hostname of the node
- Name string
- Name of the node
- Connection
Limit int - Specifies the maximum number of connections allowed for the node or node address.
- Description string
- User-defined description give ltm_node
- Dynamic
Ratio int - Specifies the fixed ratio value used for a node during ratio load balancing.
- Fqdn
Pulumi.
F5Big IP. Ltm. Inputs. Node Fqdn - Monitor string
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- Rate
Limit string - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- Ratio int
- Sets the ratio number for the node.
- Session string
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - State string
- Default is "user-up" you can set to "user-down" if you want to disable
- Address string
- IP or hostname of the node
- Name string
- Name of the node
- Connection
Limit int - Specifies the maximum number of connections allowed for the node or node address.
- Description string
- User-defined description give ltm_node
- Dynamic
Ratio int - Specifies the fixed ratio value used for a node during ratio load balancing.
- Fqdn
Node
Fqdn Args - Monitor string
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- Rate
Limit string - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- Ratio int
- Sets the ratio number for the node.
- Session string
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - State string
- Default is "user-up" you can set to "user-down" if you want to disable
- address String
- IP or hostname of the node
- name String
- Name of the node
- connection
Limit Integer - Specifies the maximum number of connections allowed for the node or node address.
- description String
- User-defined description give ltm_node
- dynamic
Ratio Integer - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn
Node
Fqdn - monitor String
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- rate
Limit String - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio Integer
- Sets the ratio number for the node.
- session String
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state String
- Default is "user-up" you can set to "user-down" if you want to disable
- address string
- IP or hostname of the node
- name string
- Name of the node
- connection
Limit number - Specifies the maximum number of connections allowed for the node or node address.
- description string
- User-defined description give ltm_node
- dynamic
Ratio number - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn
Node
Fqdn - monitor string
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- rate
Limit string - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio number
- Sets the ratio number for the node.
- session string
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state string
- Default is "user-up" you can set to "user-down" if you want to disable
- address str
- IP or hostname of the node
- name str
- Name of the node
- connection_
limit int - Specifies the maximum number of connections allowed for the node or node address.
- description str
- User-defined description give ltm_node
- dynamic_
ratio int - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn
Node
Fqdn Args - monitor str
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- rate_
limit str - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio int
- Sets the ratio number for the node.
- session str
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state str
- Default is "user-up" you can set to "user-down" if you want to disable
- address String
- IP or hostname of the node
- name String
- Name of the node
- connection
Limit Number - Specifies the maximum number of connections allowed for the node or node address.
- description String
- User-defined description give ltm_node
- dynamic
Ratio Number - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn Property Map
- monitor String
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- rate
Limit String - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio Number
- Sets the ratio number for the node.
- session String
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state String
- Default is "user-up" you can set to "user-down" if you want to disable
Outputs
All input properties are implicitly available as output properties. Additionally, the Node resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Node Resource
Get an existing Node 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?: NodeState, opts?: CustomResourceOptions): Node@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
connection_limit: Optional[int] = None,
description: Optional[str] = None,
dynamic_ratio: Optional[int] = None,
fqdn: Optional[NodeFqdnArgs] = None,
monitor: Optional[str] = None,
name: Optional[str] = None,
rate_limit: Optional[str] = None,
ratio: Optional[int] = None,
session: Optional[str] = None,
state: Optional[str] = None) -> Nodefunc GetNode(ctx *Context, name string, id IDInput, state *NodeState, opts ...ResourceOption) (*Node, error)public static Node Get(string name, Input<string> id, NodeState? state, CustomResourceOptions? opts = null)public static Node get(String name, Output<String> id, NodeState state, CustomResourceOptions options)resources: _: type: f5bigip:ltm:Node 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.
- Address string
- IP or hostname of the node
- Connection
Limit int - Specifies the maximum number of connections allowed for the node or node address.
- Description string
- User-defined description give ltm_node
- Dynamic
Ratio int - Specifies the fixed ratio value used for a node during ratio load balancing.
- Fqdn
Pulumi.
F5Big IP. Ltm. Inputs. Node Fqdn - Monitor string
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- Name string
- Name of the node
- Rate
Limit string - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- Ratio int
- Sets the ratio number for the node.
- Session string
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - State string
- Default is "user-up" you can set to "user-down" if you want to disable
- Address string
- IP or hostname of the node
- Connection
Limit int - Specifies the maximum number of connections allowed for the node or node address.
- Description string
- User-defined description give ltm_node
- Dynamic
Ratio int - Specifies the fixed ratio value used for a node during ratio load balancing.
- Fqdn
Node
Fqdn Args - Monitor string
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- Name string
- Name of the node
- Rate
Limit string - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- Ratio int
- Sets the ratio number for the node.
- Session string
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - State string
- Default is "user-up" you can set to "user-down" if you want to disable
- address String
- IP or hostname of the node
- connection
Limit Integer - Specifies the maximum number of connections allowed for the node or node address.
- description String
- User-defined description give ltm_node
- dynamic
Ratio Integer - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn
Node
Fqdn - monitor String
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- name String
- Name of the node
- rate
Limit String - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio Integer
- Sets the ratio number for the node.
- session String
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state String
- Default is "user-up" you can set to "user-down" if you want to disable
- address string
- IP or hostname of the node
- connection
Limit number - Specifies the maximum number of connections allowed for the node or node address.
- description string
- User-defined description give ltm_node
- dynamic
Ratio number - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn
Node
Fqdn - monitor string
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- name string
- Name of the node
- rate
Limit string - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio number
- Sets the ratio number for the node.
- session string
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state string
- Default is "user-up" you can set to "user-down" if you want to disable
- address str
- IP or hostname of the node
- connection_
limit int - Specifies the maximum number of connections allowed for the node or node address.
- description str
- User-defined description give ltm_node
- dynamic_
ratio int - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn
Node
Fqdn Args - monitor str
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- name str
- Name of the node
- rate_
limit str - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio int
- Sets the ratio number for the node.
- session str
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state str
- Default is "user-up" you can set to "user-down" if you want to disable
- address String
- IP or hostname of the node
- connection
Limit Number - Specifies the maximum number of connections allowed for the node or node address.
- description String
- User-defined description give ltm_node
- dynamic
Ratio Number - Specifies the fixed ratio value used for a node during ratio load balancing.
- fqdn Property Map
- monitor String
- specifies the name of the monitor or monitor rule that you want to associate with the node.
- name String
- Name of the node
- rate
Limit String - Specifies the maximum number of connections per second allowed for a node or node address. The default value is 'disabled'.
- ratio Number
- Sets the ratio number for the node.
- session String
- Enables or disables the node for new sessions. Can be set to
user-enabledoruser-disabled. (Default:user-enabled). - state String
- Default is "user-up" you can set to "user-down" if you want to disable
Supporting Types
NodeFqdn, NodeFqdnArgs
- Address
Family string - Specifies the node's address family. Can be
all,ipv4oripv6(Default:ipv4) - Autopopulate string
- Specifies if the node should scale to the IP address set returned by DNS. (Default:
disabled) - Downinterval int
- The number of attempts to resolve a domain name. (Default:
5) - Interval string
- Specifies the amount of time before sending the next DNS query. (Default:
3600) - Name string
- The fully qualified domain name of the node. Cannot configure with the
addressargument.
- Address
Family string - Specifies the node's address family. Can be
all,ipv4oripv6(Default:ipv4) - Autopopulate string
- Specifies if the node should scale to the IP address set returned by DNS. (Default:
disabled) - Downinterval int
- The number of attempts to resolve a domain name. (Default:
5) - Interval string
- Specifies the amount of time before sending the next DNS query. (Default:
3600) - Name string
- The fully qualified domain name of the node. Cannot configure with the
addressargument.
- address
Family String - Specifies the node's address family. Can be
all,ipv4oripv6(Default:ipv4) - autopopulate String
- Specifies if the node should scale to the IP address set returned by DNS. (Default:
disabled) - downinterval Integer
- The number of attempts to resolve a domain name. (Default:
5) - interval String
- Specifies the amount of time before sending the next DNS query. (Default:
3600) - name String
- The fully qualified domain name of the node. Cannot configure with the
addressargument.
- address
Family string - Specifies the node's address family. Can be
all,ipv4oripv6(Default:ipv4) - autopopulate string
- Specifies if the node should scale to the IP address set returned by DNS. (Default:
disabled) - downinterval number
- The number of attempts to resolve a domain name. (Default:
5) - interval string
- Specifies the amount of time before sending the next DNS query. (Default:
3600) - name string
- The fully qualified domain name of the node. Cannot configure with the
addressargument.
- address_
family str - Specifies the node's address family. Can be
all,ipv4oripv6(Default:ipv4) - autopopulate str
- Specifies if the node should scale to the IP address set returned by DNS. (Default:
disabled) - downinterval int
- The number of attempts to resolve a domain name. (Default:
5) - interval str
- Specifies the amount of time before sending the next DNS query. (Default:
3600) - name str
- The fully qualified domain name of the node. Cannot configure with the
addressargument.
- address
Family String - Specifies the node's address family. Can be
all,ipv4oripv6(Default:ipv4) - autopopulate String
- Specifies if the node should scale to the IP address set returned by DNS. (Default:
disabled) - downinterval Number
- The number of attempts to resolve a domain name. (Default:
5) - interval String
- Specifies the amount of time before sending the next DNS query. (Default:
3600) - name String
- The fully qualified domain name of the node. Cannot configure with the
addressargument.
Import
ing
An existing Node can be imported into this resource by supplying Node Name in full path as id.
An example is below:
$ terraform import bigip_ltm_node.site2_node "/TEST/testnode"
(or)
$ terraform import bigip_ltm_node.site2_node "/Common/3.3.3.3"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigipTerraform Provider.
published on Thursday, Mar 19, 2026 by Pulumi
