1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. LbMemberV3
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.LbMemberV3

Explore with Pulumi AI

flexibleengine logo
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

    Manages an ELB member resource within FlexibleEngine.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as flexibleengine from "@pulumi/flexibleengine";
    
    const config = new pulumi.Config();
    const address = config.requireObject("address");
    const poolId = config.requireObject("poolId");
    const exampleMember = new flexibleengine.LbMemberV3("exampleMember", {
        address: address,
        protocolPort: 8080,
        poolId: flexibleengine_lb_pool_v3.example_pool.id,
        subnetId: flexibleengine_vpc_subnet_v1.example_subnet.ipv4_subnet_id,
    });
    
    import pulumi
    import pulumi_flexibleengine as flexibleengine
    
    config = pulumi.Config()
    address = config.require_object("address")
    pool_id = config.require_object("poolId")
    example_member = flexibleengine.LbMemberV3("exampleMember",
        address=address,
        protocol_port=8080,
        pool_id=flexibleengine_lb_pool_v3["example_pool"]["id"],
        subnet_id=flexibleengine_vpc_subnet_v1["example_subnet"]["ipv4_subnet_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		address := cfg.RequireObject("address")
    		poolId := cfg.RequireObject("poolId")
    		_, err := flexibleengine.NewLbMemberV3(ctx, "exampleMember", &flexibleengine.LbMemberV3Args{
    			Address:      pulumi.Any(address),
    			ProtocolPort: pulumi.Float64(8080),
    			PoolId:       pulumi.Any(flexibleengine_lb_pool_v3.Example_pool.Id),
    			SubnetId:     pulumi.Any(flexibleengine_vpc_subnet_v1.Example_subnet.Ipv4_subnet_id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Flexibleengine = Pulumi.Flexibleengine;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var address = config.RequireObject<dynamic>("address");
        var poolId = config.RequireObject<dynamic>("poolId");
        var exampleMember = new Flexibleengine.LbMemberV3("exampleMember", new()
        {
            Address = address,
            ProtocolPort = 8080,
            PoolId = flexibleengine_lb_pool_v3.Example_pool.Id,
            SubnetId = flexibleengine_vpc_subnet_v1.Example_subnet.Ipv4_subnet_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.flexibleengine.LbMemberV3;
    import com.pulumi.flexibleengine.LbMemberV3Args;
    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) {
            final var config = ctx.config();
            final var address = config.get("address");
            final var poolId = config.get("poolId");
            var exampleMember = new LbMemberV3("exampleMember", LbMemberV3Args.builder()
                .address(address)
                .protocolPort(8080)
                .poolId(flexibleengine_lb_pool_v3.example_pool().id())
                .subnetId(flexibleengine_vpc_subnet_v1.example_subnet().ipv4_subnet_id())
                .build());
    
        }
    }
    
    configuration:
      address:
        type: dynamic
      poolId:
        type: dynamic
    resources:
      exampleMember:
        type: flexibleengine:LbMemberV3
        properties:
          address: ${address}
          protocolPort: 8080
          poolId: ${flexibleengine_lb_pool_v3.example_pool.id}
          subnetId: ${flexibleengine_vpc_subnet_v1.example_subnet.ipv4_subnet_id}
    

    Create LbMemberV3 Resource

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

    Constructor syntax

    new LbMemberV3(name: string, args: LbMemberV3Args, opts?: CustomResourceOptions);
    @overload
    def LbMemberV3(resource_name: str,
                   args: LbMemberV3Args,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def LbMemberV3(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   address: Optional[str] = None,
                   pool_id: Optional[str] = None,
                   protocol_port: Optional[float] = None,
                   lb_member_v3_id: Optional[str] = None,
                   name: Optional[str] = None,
                   region: Optional[str] = None,
                   subnet_id: Optional[str] = None,
                   timeouts: Optional[LbMemberV3TimeoutsArgs] = None,
                   weight: Optional[float] = None)
    func NewLbMemberV3(ctx *Context, name string, args LbMemberV3Args, opts ...ResourceOption) (*LbMemberV3, error)
    public LbMemberV3(string name, LbMemberV3Args args, CustomResourceOptions? opts = null)
    public LbMemberV3(String name, LbMemberV3Args args)
    public LbMemberV3(String name, LbMemberV3Args args, CustomResourceOptions options)
    
    type: flexibleengine:LbMemberV3
    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 LbMemberV3Args
    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 LbMemberV3Args
    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 LbMemberV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LbMemberV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LbMemberV3Args
    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 lbMemberV3Resource = new Flexibleengine.LbMemberV3("lbMemberV3Resource", new()
    {
        Address = "string",
        PoolId = "string",
        ProtocolPort = 0,
        LbMemberV3Id = "string",
        Name = "string",
        Region = "string",
        SubnetId = "string",
        Timeouts = new Flexibleengine.Inputs.LbMemberV3TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        Weight = 0,
    });
    
    example, err := flexibleengine.NewLbMemberV3(ctx, "lbMemberV3Resource", &flexibleengine.LbMemberV3Args{
    	Address:      pulumi.String("string"),
    	PoolId:       pulumi.String("string"),
    	ProtocolPort: pulumi.Float64(0),
    	LbMemberV3Id: pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	Region:       pulumi.String("string"),
    	SubnetId:     pulumi.String("string"),
    	Timeouts: &flexibleengine.LbMemberV3TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Weight: pulumi.Float64(0),
    })
    
    var lbMemberV3Resource = new LbMemberV3("lbMemberV3Resource", LbMemberV3Args.builder()
        .address("string")
        .poolId("string")
        .protocolPort(0)
        .lbMemberV3Id("string")
        .name("string")
        .region("string")
        .subnetId("string")
        .timeouts(LbMemberV3TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .weight(0)
        .build());
    
    lb_member_v3_resource = flexibleengine.LbMemberV3("lbMemberV3Resource",
        address="string",
        pool_id="string",
        protocol_port=0,
        lb_member_v3_id="string",
        name="string",
        region="string",
        subnet_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        weight=0)
    
    const lbMemberV3Resource = new flexibleengine.LbMemberV3("lbMemberV3Resource", {
        address: "string",
        poolId: "string",
        protocolPort: 0,
        lbMemberV3Id: "string",
        name: "string",
        region: "string",
        subnetId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        weight: 0,
    });
    
    type: flexibleengine:LbMemberV3
    properties:
        address: string
        lbMemberV3Id: string
        name: string
        poolId: string
        protocolPort: 0
        region: string
        subnetId: string
        timeouts:
            create: string
            delete: string
            update: string
        weight: 0
    

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

    Address string
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    PoolId string
    Specifies the id of the pool that this member will be assigned to.
    ProtocolPort double
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    LbMemberV3Id string
    The unique ID for the member.
    Name string
    Specifies the name for the member.
    Region string
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    SubnetId string
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    Timeouts LbMemberV3Timeouts
    Weight double
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    Address string
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    PoolId string
    Specifies the id of the pool that this member will be assigned to.
    ProtocolPort float64
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    LbMemberV3Id string
    The unique ID for the member.
    Name string
    Specifies the name for the member.
    Region string
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    SubnetId string
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    Timeouts LbMemberV3TimeoutsArgs
    Weight float64
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address String
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    poolId String
    Specifies the id of the pool that this member will be assigned to.
    protocolPort Double
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    lbMemberV3Id String
    The unique ID for the member.
    name String
    Specifies the name for the member.
    region String
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnetId String
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts LbMemberV3Timeouts
    weight Double
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address string
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    poolId string
    Specifies the id of the pool that this member will be assigned to.
    protocolPort number
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    lbMemberV3Id string
    The unique ID for the member.
    name string
    Specifies the name for the member.
    region string
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnetId string
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts LbMemberV3Timeouts
    weight number
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address str
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    pool_id str
    Specifies the id of the pool that this member will be assigned to.
    protocol_port float
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    lb_member_v3_id str
    The unique ID for the member.
    name str
    Specifies the name for the member.
    region str
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnet_id str
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts LbMemberV3TimeoutsArgs
    weight float
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address String
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    poolId String
    Specifies the id of the pool that this member will be assigned to.
    protocolPort Number
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    lbMemberV3Id String
    The unique ID for the member.
    name String
    Specifies the name for the member.
    region String
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnetId String
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts Property Map
    weight Number
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LbMemberV3 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 LbMemberV3 Resource

    Get an existing LbMemberV3 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?: LbMemberV3State, opts?: CustomResourceOptions): LbMemberV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            lb_member_v3_id: Optional[str] = None,
            name: Optional[str] = None,
            pool_id: Optional[str] = None,
            protocol_port: Optional[float] = None,
            region: Optional[str] = None,
            subnet_id: Optional[str] = None,
            timeouts: Optional[LbMemberV3TimeoutsArgs] = None,
            weight: Optional[float] = None) -> LbMemberV3
    func GetLbMemberV3(ctx *Context, name string, id IDInput, state *LbMemberV3State, opts ...ResourceOption) (*LbMemberV3, error)
    public static LbMemberV3 Get(string name, Input<string> id, LbMemberV3State? state, CustomResourceOptions? opts = null)
    public static LbMemberV3 get(String name, Output<String> id, LbMemberV3State state, CustomResourceOptions options)
    resources:  _:    type: flexibleengine:LbMemberV3    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Address string
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    LbMemberV3Id string
    The unique ID for the member.
    Name string
    Specifies the name for the member.
    PoolId string
    Specifies the id of the pool that this member will be assigned to.
    ProtocolPort double
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    Region string
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    SubnetId string
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    Timeouts LbMemberV3Timeouts
    Weight double
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    Address string
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    LbMemberV3Id string
    The unique ID for the member.
    Name string
    Specifies the name for the member.
    PoolId string
    Specifies the id of the pool that this member will be assigned to.
    ProtocolPort float64
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    Region string
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    SubnetId string
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    Timeouts LbMemberV3TimeoutsArgs
    Weight float64
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address String
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    lbMemberV3Id String
    The unique ID for the member.
    name String
    Specifies the name for the member.
    poolId String
    Specifies the id of the pool that this member will be assigned to.
    protocolPort Double
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    region String
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnetId String
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts LbMemberV3Timeouts
    weight Double
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address string
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    lbMemberV3Id string
    The unique ID for the member.
    name string
    Specifies the name for the member.
    poolId string
    Specifies the id of the pool that this member will be assigned to.
    protocolPort number
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    region string
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnetId string
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts LbMemberV3Timeouts
    weight number
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address str
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    lb_member_v3_id str
    The unique ID for the member.
    name str
    Specifies the name for the member.
    pool_id str
    Specifies the id of the pool that this member will be assigned to.
    protocol_port float
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    region str
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnet_id str
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts LbMemberV3TimeoutsArgs
    weight float
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.
    address String
    Specifies the IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
    lbMemberV3Id String
    The unique ID for the member.
    name String
    Specifies the name for the member.
    poolId String
    Specifies the id of the pool that this member will be assigned to.
    protocolPort Number
    Specifies the port on which to listen for client traffic. Changing this creates a new member.
    region String
    Specifies the region in which to create the ELB member resource. Changing this creates a new member.
    subnetId String
    The ipv4_subnet_id or ipv6_subnet_id of the VPC Subnet in which to access the member. The IPv4 or IPv6 subnet must be in the same VPC as the subnet of the load balancer. If this parameter is not passed, cross-VPC backend has been enabled for the load balancer. In this case, cross-VPC backend servers must use private IPv4 addresses, and the protocol of the backend server group must be TCP, HTTP, or HTTPS.
    timeouts Property Map
    weight Number
    Specifies the positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2.

    Supporting Types

    LbMemberV3Timeouts, LbMemberV3TimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    ELB member can be imported using the pool ID and member ID separated by a slash, e.g.

    $ pulumi import flexibleengine:index/lbMemberV3:LbMemberV3 member_1 5c20fdad-7288-11eb-b817-0255ac10158b/e0bd694a-abbe-450e-b329-0931fd1cc5eb
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
    License
    Notes
    This Pulumi package is based on the flexibleengine Terraform Provider.
    flexibleengine logo
    flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud