alicloud logo
Alibaba Cloud v3.34.0, Mar 17 23

alicloud.slb.Attachment

Import

Load balancer attachment can be imported using the id or load balancer id, e.g.

 $ pulumi import alicloud:slb/attachment:Attachment example lb-abc123456

Example Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "slbattachmenttest";
    var defaultZones = AliCloud.GetZones.Invoke(new()
    {
        AvailableDiskCategory = "cloud_efficiency",
        AvailableResourceCreation = "VSwitch",
    });

    var defaultInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
    {
        AvailabilityZone = defaultZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        CpuCoreCount = 1,
        MemorySize = 2,
    });

    var defaultImages = AliCloud.Ecs.GetImages.Invoke(new()
    {
        NameRegex = "^ubuntu_18.*64",
        MostRecent = true,
        Owners = "system",
    });

    var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
    {
        CidrBlock = "172.16.0.0/16",
    });

    var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
    {
        VpcId = defaultNetwork.Id,
        CidrBlock = "172.16.0.0/16",
        ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        VswitchName = name,
    });

    var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("defaultSecurityGroup", new()
    {
        VpcId = defaultNetwork.Id,
    });

    var defaultInstance = new AliCloud.Ecs.Instance("defaultInstance", new()
    {
        ImageId = defaultImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
        InstanceType = defaultInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.Id),
        InternetChargeType = "PayByTraffic",
        InternetMaxBandwidthOut = 5,
        SystemDiskCategory = "cloud_efficiency",
        SecurityGroups = new[]
        {
            defaultSecurityGroup.Id,
        },
        InstanceName = name,
        VswitchId = defaultSwitch.Id,
    });

    var defaultApplicationLoadBalancer = new AliCloud.Slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", new()
    {
        LoadBalancerName = name,
        VswitchId = defaultSwitch.Id,
    });

    var defaultAttachment = new AliCloud.Slb.Attachment("defaultAttachment", new()
    {
        LoadBalancerId = defaultApplicationLoadBalancer.Id,
        InstanceIds = new[]
        {
            defaultInstance.Id,
        },
        Weight = 90,
    });

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/slb"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"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, "")
		name := "slbattachmenttest"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		defaultZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
			AvailableDiskCategory:     pulumi.StringRef("cloud_efficiency"),
			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
		}, nil)
		if err != nil {
			return err
		}
		defaultInstanceTypes, err := ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
			AvailabilityZone: pulumi.StringRef(defaultZones.Zones[0].Id),
			CpuCoreCount:     pulumi.IntRef(1),
			MemorySize:       pulumi.Float64Ref(2),
		}, nil)
		if err != nil {
			return err
		}
		defaultImages, err := ecs.GetImages(ctx, &ecs.GetImagesArgs{
			NameRegex:  pulumi.StringRef("^ubuntu_18.*64"),
			MostRecent: pulumi.BoolRef(true),
			Owners:     pulumi.StringRef("system"),
		}, nil)
		if err != nil {
			return err
		}
		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
			CidrBlock: pulumi.String("172.16.0.0/16"),
		})
		if err != nil {
			return err
		}
		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
			VpcId:       defaultNetwork.ID(),
			CidrBlock:   pulumi.String("172.16.0.0/16"),
			ZoneId:      *pulumi.String(defaultZones.Zones[0].Id),
			VswitchName: pulumi.String(name),
		})
		if err != nil {
			return err
		}
		defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "defaultSecurityGroup", &ecs.SecurityGroupArgs{
			VpcId: defaultNetwork.ID(),
		})
		if err != nil {
			return err
		}
		defaultInstance, err := ecs.NewInstance(ctx, "defaultInstance", &ecs.InstanceArgs{
			ImageId:                 *pulumi.String(defaultImages.Images[0].Id),
			InstanceType:            *pulumi.String(defaultInstanceTypes.InstanceTypes[0].Id),
			InternetChargeType:      pulumi.String("PayByTraffic"),
			InternetMaxBandwidthOut: pulumi.Int(5),
			SystemDiskCategory:      pulumi.String("cloud_efficiency"),
			SecurityGroups: pulumi.StringArray{
				defaultSecurityGroup.ID(),
			},
			InstanceName: pulumi.String(name),
			VswitchId:    defaultSwitch.ID(),
		})
		if err != nil {
			return err
		}
		defaultApplicationLoadBalancer, err := slb.NewApplicationLoadBalancer(ctx, "defaultApplicationLoadBalancer", &slb.ApplicationLoadBalancerArgs{
			LoadBalancerName: pulumi.String(name),
			VswitchId:        defaultSwitch.ID(),
		})
		if err != nil {
			return err
		}
		_, err = slb.NewAttachment(ctx, "defaultAttachment", &slb.AttachmentArgs{
			LoadBalancerId: defaultApplicationLoadBalancer.ID(),
			InstanceIds: pulumi.StringArray{
				defaultInstance.ID(),
			},
			Weight: pulumi.Int(90),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.ecs.EcsFunctions;
import com.pulumi.alicloud.ecs.inputs.GetInstanceTypesArgs;
import com.pulumi.alicloud.ecs.inputs.GetImagesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.ecs.Instance;
import com.pulumi.alicloud.ecs.InstanceArgs;
import com.pulumi.alicloud.slb.ApplicationLoadBalancer;
import com.pulumi.alicloud.slb.ApplicationLoadBalancerArgs;
import com.pulumi.alicloud.slb.Attachment;
import com.pulumi.alicloud.slb.AttachmentArgs;
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 name = config.get("name").orElse("slbattachmenttest");
        final var defaultZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableDiskCategory("cloud_efficiency")
            .availableResourceCreation("VSwitch")
            .build());

        final var defaultInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
            .availabilityZone(defaultZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
            .cpuCoreCount(1)
            .memorySize(2)
            .build());

        final var defaultImages = EcsFunctions.getImages(GetImagesArgs.builder()
            .nameRegex("^ubuntu_18.*64")
            .mostRecent(true)
            .owners("system")
            .build());

        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()        
            .cidrBlock("172.16.0.0/16")
            .build());

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()        
            .vpcId(defaultNetwork.id())
            .cidrBlock("172.16.0.0/16")
            .zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
            .vswitchName(name)
            .build());

        var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()        
            .vpcId(defaultNetwork.id())
            .build());

        var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()        
            .imageId(defaultImages.applyValue(getImagesResult -> getImagesResult.images()[0].id()))
            .instanceType(defaultInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()[0].id()))
            .internetChargeType("PayByTraffic")
            .internetMaxBandwidthOut("5")
            .systemDiskCategory("cloud_efficiency")
            .securityGroups(defaultSecurityGroup.id())
            .instanceName(name)
            .vswitchId(defaultSwitch.id())
            .build());

        var defaultApplicationLoadBalancer = new ApplicationLoadBalancer("defaultApplicationLoadBalancer", ApplicationLoadBalancerArgs.builder()        
            .loadBalancerName(name)
            .vswitchId(defaultSwitch.id())
            .build());

        var defaultAttachment = new Attachment("defaultAttachment", AttachmentArgs.builder()        
            .loadBalancerId(defaultApplicationLoadBalancer.id())
            .instanceIds(defaultInstance.id())
            .weight(90)
            .build());

    }
}
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "slbattachmenttest"
default_zones = alicloud.get_zones(available_disk_category="cloud_efficiency",
    available_resource_creation="VSwitch")
default_instance_types = alicloud.ecs.get_instance_types(availability_zone=default_zones.zones[0].id,
    cpu_core_count=1,
    memory_size=2)
default_images = alicloud.ecs.get_images(name_regex="^ubuntu_18.*64",
    most_recent=True,
    owners="system")
default_network = alicloud.vpc.Network("defaultNetwork", cidr_block="172.16.0.0/16")
default_switch = alicloud.vpc.Switch("defaultSwitch",
    vpc_id=default_network.id,
    cidr_block="172.16.0.0/16",
    zone_id=default_zones.zones[0].id,
    vswitch_name=name)
default_security_group = alicloud.ecs.SecurityGroup("defaultSecurityGroup", vpc_id=default_network.id)
default_instance = alicloud.ecs.Instance("defaultInstance",
    image_id=default_images.images[0].id,
    instance_type=default_instance_types.instance_types[0].id,
    internet_charge_type="PayByTraffic",
    internet_max_bandwidth_out=5,
    system_disk_category="cloud_efficiency",
    security_groups=[default_security_group.id],
    instance_name=name,
    vswitch_id=default_switch.id)
default_application_load_balancer = alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer",
    load_balancer_name=name,
    vswitch_id=default_switch.id)
default_attachment = alicloud.slb.Attachment("defaultAttachment",
    load_balancer_id=default_application_load_balancer.id,
    instance_ids=[default_instance.id],
    weight=90)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const name = config.get("name") || "slbattachmenttest";
const defaultZones = alicloud.getZones({
    availableDiskCategory: "cloud_efficiency",
    availableResourceCreation: "VSwitch",
});
const defaultInstanceTypes = defaultZones.then(defaultZones => alicloud.ecs.getInstanceTypes({
    availabilityZone: defaultZones.zones?.[0]?.id,
    cpuCoreCount: 1,
    memorySize: 2,
}));
const defaultImages = alicloud.ecs.getImages({
    nameRegex: "^ubuntu_18.*64",
    mostRecent: true,
    owners: "system",
});
const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {cidrBlock: "172.16.0.0/16"});
const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
    vpcId: defaultNetwork.id,
    cidrBlock: "172.16.0.0/16",
    zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
    vswitchName: name,
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("defaultSecurityGroup", {vpcId: defaultNetwork.id});
const defaultInstance = new alicloud.ecs.Instance("defaultInstance", {
    imageId: defaultImages.then(defaultImages => defaultImages.images?.[0]?.id),
    instanceType: defaultInstanceTypes.then(defaultInstanceTypes => defaultInstanceTypes.instanceTypes?.[0]?.id),
    internetChargeType: "PayByTraffic",
    internetMaxBandwidthOut: 5,
    systemDiskCategory: "cloud_efficiency",
    securityGroups: [defaultSecurityGroup.id],
    instanceName: name,
    vswitchId: defaultSwitch.id,
});
const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", {
    loadBalancerName: name,
    vswitchId: defaultSwitch.id,
});
const defaultAttachment = new alicloud.slb.Attachment("defaultAttachment", {
    loadBalancerId: defaultApplicationLoadBalancer.id,
    instanceIds: [defaultInstance.id],
    weight: 90,
});
configuration:
  name:
    type: string
    default: slbattachmenttest
resources:
  defaultNetwork:
    type: alicloud:vpc:Network
    properties:
      cidrBlock: 172.16.0.0/16
  defaultSwitch:
    type: alicloud:vpc:Switch
    properties:
      vpcId: ${defaultNetwork.id}
      cidrBlock: 172.16.0.0/16
      zoneId: ${defaultZones.zones[0].id}
      vswitchName: ${name}
  defaultSecurityGroup:
    type: alicloud:ecs:SecurityGroup
    properties:
      vpcId: ${defaultNetwork.id}
  defaultInstance:
    type: alicloud:ecs:Instance
    properties:
      imageId: ${defaultImages.images[0].id}
      instanceType: ${defaultInstanceTypes.instanceTypes[0].id}
      internetChargeType: PayByTraffic
      internetMaxBandwidthOut: '5'
      systemDiskCategory: cloud_efficiency
      securityGroups:
        - ${defaultSecurityGroup.id}
      instanceName: ${name}
      vswitchId: ${defaultSwitch.id}
  defaultApplicationLoadBalancer:
    type: alicloud:slb:ApplicationLoadBalancer
    properties:
      loadBalancerName: ${name}
      vswitchId: ${defaultSwitch.id}
  defaultAttachment:
    type: alicloud:slb:Attachment
    properties:
      loadBalancerId: ${defaultApplicationLoadBalancer.id}
      instanceIds:
        - ${defaultInstance.id}
      weight: 90
variables:
  defaultZones:
    fn::invoke:
      Function: alicloud:getZones
      Arguments:
        availableDiskCategory: cloud_efficiency
        availableResourceCreation: VSwitch
  defaultInstanceTypes:
    fn::invoke:
      Function: alicloud:ecs:getInstanceTypes
      Arguments:
        availabilityZone: ${defaultZones.zones[0].id}
        cpuCoreCount: 1
        memorySize: 2
  defaultImages:
    fn::invoke:
      Function: alicloud:ecs:getImages
      Arguments:
        nameRegex: ^ubuntu_18.*64
        mostRecent: true
        owners: system

Create Attachment Resource

new Attachment(name: string, args: AttachmentArgs, opts?: CustomResourceOptions);
@overload
def Attachment(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               backend_servers: Optional[str] = None,
               delete_protection_validation: Optional[bool] = None,
               instance_ids: Optional[Sequence[str]] = None,
               load_balancer_id: Optional[str] = None,
               server_type: Optional[str] = None,
               weight: Optional[int] = None)
@overload
def Attachment(resource_name: str,
               args: AttachmentArgs,
               opts: Optional[ResourceOptions] = None)
func NewAttachment(ctx *Context, name string, args AttachmentArgs, opts ...ResourceOption) (*Attachment, error)
public Attachment(string name, AttachmentArgs args, CustomResourceOptions? opts = null)
public Attachment(String name, AttachmentArgs args)
public Attachment(String name, AttachmentArgs args, CustomResourceOptions options)
type: alicloud:slb:Attachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args AttachmentArgs
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 AttachmentArgs
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 AttachmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args AttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args AttachmentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Attachment Resource Properties

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

Inputs

The Attachment resource accepts the following input properties:

InstanceIds List<string>

A list of instance ids to added backend server in the SLB.

LoadBalancerId string

ID of the load balancer.

BackendServers string

The backend servers of the load balancer.

DeleteProtectionValidation bool

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

ServerType string

Type of the instances. Valid value ecs, eni. Default to ecs.

Weight int

Weight of the instances. Valid value range: [0-100]. Default to 100.

InstanceIds []string

A list of instance ids to added backend server in the SLB.

LoadBalancerId string

ID of the load balancer.

BackendServers string

The backend servers of the load balancer.

DeleteProtectionValidation bool

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

ServerType string

Type of the instances. Valid value ecs, eni. Default to ecs.

Weight int

Weight of the instances. Valid value range: [0-100]. Default to 100.

instanceIds List<String>

A list of instance ids to added backend server in the SLB.

loadBalancerId String

ID of the load balancer.

backendServers String

The backend servers of the load balancer.

deleteProtectionValidation Boolean

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

serverType String

Type of the instances. Valid value ecs, eni. Default to ecs.

weight Integer

Weight of the instances. Valid value range: [0-100]. Default to 100.

instanceIds string[]

A list of instance ids to added backend server in the SLB.

loadBalancerId string

ID of the load balancer.

backendServers string

The backend servers of the load balancer.

deleteProtectionValidation boolean

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

serverType string

Type of the instances. Valid value ecs, eni. Default to ecs.

weight number

Weight of the instances. Valid value range: [0-100]. Default to 100.

instance_ids Sequence[str]

A list of instance ids to added backend server in the SLB.

load_balancer_id str

ID of the load balancer.

backend_servers str

The backend servers of the load balancer.

delete_protection_validation bool

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

server_type str

Type of the instances. Valid value ecs, eni. Default to ecs.

weight int

Weight of the instances. Valid value range: [0-100]. Default to 100.

instanceIds List<String>

A list of instance ids to added backend server in the SLB.

loadBalancerId String

ID of the load balancer.

backendServers String

The backend servers of the load balancer.

deleteProtectionValidation Boolean

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

serverType String

Type of the instances. Valid value ecs, eni. Default to ecs.

weight Number

Weight of the instances. Valid value range: [0-100]. Default to 100.

Outputs

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

Get an existing Attachment 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?: AttachmentState, opts?: CustomResourceOptions): Attachment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        backend_servers: Optional[str] = None,
        delete_protection_validation: Optional[bool] = None,
        instance_ids: Optional[Sequence[str]] = None,
        load_balancer_id: Optional[str] = None,
        server_type: Optional[str] = None,
        weight: Optional[int] = None) -> Attachment
func GetAttachment(ctx *Context, name string, id IDInput, state *AttachmentState, opts ...ResourceOption) (*Attachment, error)
public static Attachment Get(string name, Input<string> id, AttachmentState? state, CustomResourceOptions? opts = null)
public static Attachment get(String name, Output<String> id, AttachmentState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
BackendServers string

The backend servers of the load balancer.

DeleteProtectionValidation bool

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

InstanceIds List<string>

A list of instance ids to added backend server in the SLB.

LoadBalancerId string

ID of the load balancer.

ServerType string

Type of the instances. Valid value ecs, eni. Default to ecs.

Weight int

Weight of the instances. Valid value range: [0-100]. Default to 100.

BackendServers string

The backend servers of the load balancer.

DeleteProtectionValidation bool

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

InstanceIds []string

A list of instance ids to added backend server in the SLB.

LoadBalancerId string

ID of the load balancer.

ServerType string

Type of the instances. Valid value ecs, eni. Default to ecs.

Weight int

Weight of the instances. Valid value range: [0-100]. Default to 100.

backendServers String

The backend servers of the load balancer.

deleteProtectionValidation Boolean

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

instanceIds List<String>

A list of instance ids to added backend server in the SLB.

loadBalancerId String

ID of the load balancer.

serverType String

Type of the instances. Valid value ecs, eni. Default to ecs.

weight Integer

Weight of the instances. Valid value range: [0-100]. Default to 100.

backendServers string

The backend servers of the load balancer.

deleteProtectionValidation boolean

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

instanceIds string[]

A list of instance ids to added backend server in the SLB.

loadBalancerId string

ID of the load balancer.

serverType string

Type of the instances. Valid value ecs, eni. Default to ecs.

weight number

Weight of the instances. Valid value range: [0-100]. Default to 100.

backend_servers str

The backend servers of the load balancer.

delete_protection_validation bool

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

instance_ids Sequence[str]

A list of instance ids to added backend server in the SLB.

load_balancer_id str

ID of the load balancer.

server_type str

Type of the instances. Valid value ecs, eni. Default to ecs.

weight int

Weight of the instances. Valid value range: [0-100]. Default to 100.

backendServers String

The backend servers of the load balancer.

deleteProtectionValidation Boolean

Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.

instanceIds List<String>

A list of instance ids to added backend server in the SLB.

loadBalancerId String

ID of the load balancer.

serverType String

Type of the instances. Valid value ecs, eni. Default to ecs.

weight Number

Weight of the instances. Valid value range: [0-100]. Default to 100.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.