1. Packages
  2. F5bigip Provider
  3. API Docs
  4. ltm
  5. Node
f5 BIG-IP v3.17.10 published on Tuesday, Apr 8, 2025 by Pulumi

f5bigip.ltm.Node

Explore with Pulumi AI

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",
    },
});
Copy
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",
    })
Copy
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", &ltm.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: &ltm.NodeFqdnArgs{
				AddressFamily: pulumi.String("ipv4"),
				Interval:      pulumi.String("3000"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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",
        },
    });

});
Copy
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());

    }
}
Copy
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'
Copy

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)
public Node(String name, NodeArgs args)
public Node(String name, NodeArgs args, CustomResourceOptions options)
type: f5bigip:ltm:Node
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NodeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. NodeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NodeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
example, err := ltm.NewNode(ctx, "nodeResource", &ltm.NodeArgs{
	Address:         pulumi.String("string"),
	Name:            pulumi.String("string"),
	ConnectionLimit: pulumi.Int(0),
	Description:     pulumi.String("string"),
	DynamicRatio:    pulumi.Int(0),
	Fqdn: &ltm.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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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
This property is required.
Changes to this property will trigger replacement.
string
IP or hostname of the node
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the node
ConnectionLimit int
Specifies the maximum number of connections allowed for the node or node address.
Description string
User-defined description give ltm_node
DynamicRatio int
Specifies the fixed ratio value used for a node during ratio load balancing.
Fqdn Pulumi.F5BigIP.Ltm.Inputs.NodeFqdn
Monitor string
specifies the name of the monitor or monitor rule that you want to associate with the node.
RateLimit 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. The default value is user-enabled.
State string

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

Address
This property is required.
Changes to this property will trigger replacement.
string
IP or hostname of the node
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the node
ConnectionLimit int
Specifies the maximum number of connections allowed for the node or node address.
Description string
User-defined description give ltm_node
DynamicRatio int
Specifies the fixed ratio value used for a node during ratio load balancing.
Fqdn NodeFqdnArgs
Monitor string
specifies the name of the monitor or monitor rule that you want to associate with the node.
RateLimit 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. The default value is user-enabled.
State string

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address
This property is required.
Changes to this property will trigger replacement.
String
IP or hostname of the node
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the node
connectionLimit Integer
Specifies the maximum number of connections allowed for the node or node address.
description String
User-defined description give ltm_node
dynamicRatio Integer
Specifies the fixed ratio value used for a node during ratio load balancing.
fqdn NodeFqdn
monitor String
specifies the name of the monitor or monitor rule that you want to associate with the node.
rateLimit 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. The default value is user-enabled.
state String

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address
This property is required.
Changes to this property will trigger replacement.
string
IP or hostname of the node
name
This property is required.
Changes to this property will trigger replacement.
string
Name of the node
connectionLimit number
Specifies the maximum number of connections allowed for the node or node address.
description string
User-defined description give ltm_node
dynamicRatio number
Specifies the fixed ratio value used for a node during ratio load balancing.
fqdn NodeFqdn
monitor string
specifies the name of the monitor or monitor rule that you want to associate with the node.
rateLimit 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. The default value is user-enabled.
state string

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address
This property is required.
Changes to this property will trigger replacement.
str
IP or hostname of the node
name
This property is required.
Changes to this property will trigger replacement.
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 NodeFqdnArgs
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. The default value is user-enabled.
state str

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address
This property is required.
Changes to this property will trigger replacement.
String
IP or hostname of the node
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the node
connectionLimit Number
Specifies the maximum number of connections allowed for the node or node address.
description String
User-defined description give ltm_node
dynamicRatio 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.
rateLimit 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. The default value is user-enabled.
state String

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

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) -> Node
func 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Address Changes to this property will trigger replacement. string
IP or hostname of the node
ConnectionLimit int
Specifies the maximum number of connections allowed for the node or node address.
Description string
User-defined description give ltm_node
DynamicRatio int
Specifies the fixed ratio value used for a node during ratio load balancing.
Fqdn Pulumi.F5BigIP.Ltm.Inputs.NodeFqdn
Monitor string
specifies the name of the monitor or monitor rule that you want to associate with the node.
Name Changes to this property will trigger replacement. string
Name of the node
RateLimit 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. The default value is user-enabled.
State string

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

Address Changes to this property will trigger replacement. string
IP or hostname of the node
ConnectionLimit int
Specifies the maximum number of connections allowed for the node or node address.
Description string
User-defined description give ltm_node
DynamicRatio int
Specifies the fixed ratio value used for a node during ratio load balancing.
Fqdn NodeFqdnArgs
Monitor string
specifies the name of the monitor or monitor rule that you want to associate with the node.
Name Changes to this property will trigger replacement. string
Name of the node
RateLimit 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. The default value is user-enabled.
State string

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address Changes to this property will trigger replacement. String
IP or hostname of the node
connectionLimit Integer
Specifies the maximum number of connections allowed for the node or node address.
description String
User-defined description give ltm_node
dynamicRatio Integer
Specifies the fixed ratio value used for a node during ratio load balancing.
fqdn NodeFqdn
monitor String
specifies the name of the monitor or monitor rule that you want to associate with the node.
name Changes to this property will trigger replacement. String
Name of the node
rateLimit 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. The default value is user-enabled.
state String

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address Changes to this property will trigger replacement. string
IP or hostname of the node
connectionLimit number
Specifies the maximum number of connections allowed for the node or node address.
description string
User-defined description give ltm_node
dynamicRatio number
Specifies the fixed ratio value used for a node during ratio load balancing.
fqdn NodeFqdn
monitor string
specifies the name of the monitor or monitor rule that you want to associate with the node.
name Changes to this property will trigger replacement. string
Name of the node
rateLimit 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. The default value is user-enabled.
state string

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address Changes to this property will trigger replacement. 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 NodeFqdnArgs
monitor str
specifies the name of the monitor or monitor rule that you want to associate with the node.
name Changes to this property will trigger replacement. 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. The default value is user-enabled.
state str

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

address Changes to this property will trigger replacement. String
IP or hostname of the node
connectionLimit Number
Specifies the maximum number of connections allowed for the node or node address.
description String
User-defined description give ltm_node
dynamicRatio 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 Changes to this property will trigger replacement. String
Name of the node
rateLimit 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. The default value is user-enabled.
state String

Default is "user-up" you can set to "user-down" if you want to disable

NOTE Below attributes needs to be configured under fqdn option.

Supporting Types

NodeFqdn
, NodeFqdnArgs

AddressFamily string
Specifies the node's address family. The default is 'unspecified', or IP-agnostic. This needs to be specified inside the fqdn (fully qualified domain name).
Autopopulate string
Specifies whether the node should scale to the IP address set returned by DNS.
Downinterval int
Specifies the number of attempts to resolve a domain name. The default is 5.
Interval string
Specifies the amount of time before sending the next DNS query. Default is 3600. This needs to be specified inside the fqdn (fully qualified domain name).
Name string
Name of the node
AddressFamily string
Specifies the node's address family. The default is 'unspecified', or IP-agnostic. This needs to be specified inside the fqdn (fully qualified domain name).
Autopopulate string
Specifies whether the node should scale to the IP address set returned by DNS.
Downinterval int
Specifies the number of attempts to resolve a domain name. The default is 5.
Interval string
Specifies the amount of time before sending the next DNS query. Default is 3600. This needs to be specified inside the fqdn (fully qualified domain name).
Name string
Name of the node
addressFamily String
Specifies the node's address family. The default is 'unspecified', or IP-agnostic. This needs to be specified inside the fqdn (fully qualified domain name).
autopopulate String
Specifies whether the node should scale to the IP address set returned by DNS.
downinterval Integer
Specifies the number of attempts to resolve a domain name. The default is 5.
interval String
Specifies the amount of time before sending the next DNS query. Default is 3600. This needs to be specified inside the fqdn (fully qualified domain name).
name String
Name of the node
addressFamily string
Specifies the node's address family. The default is 'unspecified', or IP-agnostic. This needs to be specified inside the fqdn (fully qualified domain name).
autopopulate string
Specifies whether the node should scale to the IP address set returned by DNS.
downinterval number
Specifies the number of attempts to resolve a domain name. The default is 5.
interval string
Specifies the amount of time before sending the next DNS query. Default is 3600. This needs to be specified inside the fqdn (fully qualified domain name).
name string
Name of the node
address_family str
Specifies the node's address family. The default is 'unspecified', or IP-agnostic. This needs to be specified inside the fqdn (fully qualified domain name).
autopopulate str
Specifies whether the node should scale to the IP address set returned by DNS.
downinterval int
Specifies the number of attempts to resolve a domain name. The default is 5.
interval str
Specifies the amount of time before sending the next DNS query. Default is 3600. This needs to be specified inside the fqdn (fully qualified domain name).
name str
Name of the node
addressFamily String
Specifies the node's address family. The default is 'unspecified', or IP-agnostic. This needs to be specified inside the fqdn (fully qualified domain name).
autopopulate String
Specifies whether the node should scale to the IP address set returned by DNS.
downinterval Number
Specifies the number of attempts to resolve a domain name. The default is 5.
interval String
Specifies the amount of time before sending the next DNS query. Default is 3600. This needs to be specified inside the fqdn (fully qualified domain name).
name String
Name of the node

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"
Copy

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 bigip Terraform Provider.