1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. ess
  5. ScalingGroup
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.ess.ScalingGroup

Explore with Pulumi AI

Provides a ESS scaling group resource which is a collection of ECS instances with the same application scenarios.

It defines the maximum and minimum numbers of ECS instances in the group, and their associated Server Load Balancer instances, RDS instances, and other attributes.

NOTE: You can launch an ESS scaling group for a VPC network via specifying parameter vswitch_ids.

For information about ess scaling rule, see CreateScalingGroup.

NOTE: Available since v1.39.0.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";

const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const defaultInteger = new random.index.Integer("default", {
    min: 10000,
    max: 99999,
});
const myName = `${name}-${defaultInteger.result}`;
const _default = alicloud.getZones({
    availableDiskCategory: "cloud_efficiency",
    availableResourceCreation: "VSwitch",
});
const defaultGetInstanceTypes = _default.then(_default => alicloud.ecs.getInstanceTypes({
    availabilityZone: _default.zones?.[0]?.id,
    cpuCoreCount: 2,
    memorySize: 4,
}));
const defaultGetImages = alicloud.ecs.getImages({
    nameRegex: "^ubuntu_18.*64",
    mostRecent: true,
    owners: "system",
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: myName,
    cidrBlock: "172.16.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vpcId: defaultNetwork.id,
    cidrBlock: "172.16.0.0/24",
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
    vswitchName: myName,
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {
    securityGroupName: myName,
    vpcId: defaultNetwork.id,
});
const defaultSecurityGroupRule = new alicloud.ecs.SecurityGroupRule("default", {
    type: "ingress",
    ipProtocol: "tcp",
    nicType: "intranet",
    policy: "accept",
    portRange: "22/22",
    priority: 1,
    securityGroupId: defaultSecurityGroup.id,
    cidrIp: "172.16.0.0/24",
});
const default2 = new alicloud.vpc.Switch("default2", {
    vpcId: defaultNetwork.id,
    cidrBlock: "172.16.1.0/24",
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
    vswitchName: `${name}-bar`,
});
const defaultScalingGroup = new alicloud.ess.ScalingGroup("default", {
    minSize: 1,
    maxSize: 1,
    scalingGroupName: myName,
    defaultCooldown: 20,
    vswitchIds: [
        defaultSwitch.id,
        default2.id,
    ],
    removalPolicies: [
        "OldestInstance",
        "NewestInstance",
    ],
});
Copy
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default_integer = random.index.Integer("default",
    min=10000,
    max=99999)
my_name = f"{name}-{default_integer['result']}"
default = alicloud.get_zones(available_disk_category="cloud_efficiency",
    available_resource_creation="VSwitch")
default_get_instance_types = alicloud.ecs.get_instance_types(availability_zone=default.zones[0].id,
    cpu_core_count=2,
    memory_size=4)
default_get_images = alicloud.ecs.get_images(name_regex="^ubuntu_18.*64",
    most_recent=True,
    owners="system")
default_network = alicloud.vpc.Network("default",
    vpc_name=my_name,
    cidr_block="172.16.0.0/16")
default_switch = alicloud.vpc.Switch("default",
    vpc_id=default_network.id,
    cidr_block="172.16.0.0/24",
    zone_id=default.zones[0].id,
    vswitch_name=my_name)
default_security_group = alicloud.ecs.SecurityGroup("default",
    security_group_name=my_name,
    vpc_id=default_network.id)
default_security_group_rule = alicloud.ecs.SecurityGroupRule("default",
    type="ingress",
    ip_protocol="tcp",
    nic_type="intranet",
    policy="accept",
    port_range="22/22",
    priority=1,
    security_group_id=default_security_group.id,
    cidr_ip="172.16.0.0/24")
default2 = alicloud.vpc.Switch("default2",
    vpc_id=default_network.id,
    cidr_block="172.16.1.0/24",
    zone_id=default.zones[0].id,
    vswitch_name=f"{name}-bar")
default_scaling_group = alicloud.ess.ScalingGroup("default",
    min_size=1,
    max_size=1,
    scaling_group_name=my_name,
    default_cooldown=20,
    vswitch_ids=[
        default_switch.id,
        default2.id,
    ],
    removal_policies=[
        "OldestInstance",
        "NewestInstance",
    ])
Copy
package main

import (
	"fmt"

	"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/ess"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
	"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 := "terraform-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		defaultInteger, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
			Min: 10000,
			Max: 99999,
		})
		if err != nil {
			return err
		}
		myName := fmt.Sprintf("%v-%v", name, defaultInteger.Result)
		_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
			AvailableDiskCategory:     pulumi.StringRef("cloud_efficiency"),
			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
		}, nil)
		if err != nil {
			return err
		}
		_, err = ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
			AvailabilityZone: pulumi.StringRef(_default.Zones[0].Id),
			CpuCoreCount:     pulumi.IntRef(2),
			MemorySize:       pulumi.Float64Ref(4),
		}, nil)
		if err != nil {
			return err
		}
		_, 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, "default", &vpc.NetworkArgs{
			VpcName:   pulumi.String(myName),
			CidrBlock: pulumi.String("172.16.0.0/16"),
		})
		if err != nil {
			return err
		}
		defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
			VpcId:       defaultNetwork.ID(),
			CidrBlock:   pulumi.String("172.16.0.0/24"),
			ZoneId:      pulumi.String(_default.Zones[0].Id),
			VswitchName: pulumi.String(myName),
		})
		if err != nil {
			return err
		}
		defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
			SecurityGroupName: pulumi.String(myName),
			VpcId:             defaultNetwork.ID(),
		})
		if err != nil {
			return err
		}
		_, err = ecs.NewSecurityGroupRule(ctx, "default", &ecs.SecurityGroupRuleArgs{
			Type:            pulumi.String("ingress"),
			IpProtocol:      pulumi.String("tcp"),
			NicType:         pulumi.String("intranet"),
			Policy:          pulumi.String("accept"),
			PortRange:       pulumi.String("22/22"),
			Priority:        pulumi.Int(1),
			SecurityGroupId: defaultSecurityGroup.ID(),
			CidrIp:          pulumi.String("172.16.0.0/24"),
		})
		if err != nil {
			return err
		}
		default2, err := vpc.NewSwitch(ctx, "default2", &vpc.SwitchArgs{
			VpcId:       defaultNetwork.ID(),
			CidrBlock:   pulumi.String("172.16.1.0/24"),
			ZoneId:      pulumi.String(_default.Zones[0].Id),
			VswitchName: pulumi.Sprintf("%v-bar", name),
		})
		if err != nil {
			return err
		}
		_, err = ess.NewScalingGroup(ctx, "default", &ess.ScalingGroupArgs{
			MinSize:          pulumi.Int(1),
			MaxSize:          pulumi.Int(1),
			ScalingGroupName: pulumi.String(myName),
			DefaultCooldown:  pulumi.Int(20),
			VswitchIds: pulumi.StringArray{
				defaultSwitch.ID(),
				default2.ID(),
			},
			RemovalPolicies: pulumi.StringArray{
				pulumi.String("OldestInstance"),
				pulumi.String("NewestInstance"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var defaultInteger = new Random.Index.Integer("default", new()
    {
        Min = 10000,
        Max = 99999,
    });

    var myName = $"{name}-{defaultInteger.Result}";

    var @default = AliCloud.GetZones.Invoke(new()
    {
        AvailableDiskCategory = "cloud_efficiency",
        AvailableResourceCreation = "VSwitch",
    });

    var defaultGetInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
    {
        AvailabilityZone = @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        CpuCoreCount = 2,
        MemorySize = 4,
    });

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

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

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

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

    var defaultSecurityGroupRule = new AliCloud.Ecs.SecurityGroupRule("default", new()
    {
        Type = "ingress",
        IpProtocol = "tcp",
        NicType = "intranet",
        Policy = "accept",
        PortRange = "22/22",
        Priority = 1,
        SecurityGroupId = defaultSecurityGroup.Id,
        CidrIp = "172.16.0.0/24",
    });

    var default2 = new AliCloud.Vpc.Switch("default2", new()
    {
        VpcId = defaultNetwork.Id,
        CidrBlock = "172.16.1.0/24",
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        VswitchName = $"{name}-bar",
    });

    var defaultScalingGroup = new AliCloud.Ess.ScalingGroup("default", new()
    {
        MinSize = 1,
        MaxSize = 1,
        ScalingGroupName = myName,
        DefaultCooldown = 20,
        VswitchIds = new[]
        {
            defaultSwitch.Id,
            default2.Id,
        },
        RemovalPolicies = new[]
        {
            "OldestInstance",
            "NewestInstance",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.random.integer;
import com.pulumi.random.IntegerArgs;
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.SecurityGroupRule;
import com.pulumi.alicloud.ecs.SecurityGroupRuleArgs;
import com.pulumi.alicloud.ess.ScalingGroup;
import com.pulumi.alicloud.ess.ScalingGroupArgs;
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("terraform-example");
        var defaultInteger = new Integer("defaultInteger", IntegerArgs.builder()
            .min(10000)
            .max(99999)
            .build());

        final var myName = String.format("%s-%s", name,defaultInteger.result());

        final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableDiskCategory("cloud_efficiency")
            .availableResourceCreation("VSwitch")
            .build());

        final var defaultGetInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
            .availabilityZone(default_.zones()[0].id())
            .cpuCoreCount(2)
            .memorySize(4)
            .build());

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

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

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vpcId(defaultNetwork.id())
            .cidrBlock("172.16.0.0/24")
            .zoneId(default_.zones()[0].id())
            .vswitchName(myName)
            .build());

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

        var defaultSecurityGroupRule = new SecurityGroupRule("defaultSecurityGroupRule", SecurityGroupRuleArgs.builder()
            .type("ingress")
            .ipProtocol("tcp")
            .nicType("intranet")
            .policy("accept")
            .portRange("22/22")
            .priority(1)
            .securityGroupId(defaultSecurityGroup.id())
            .cidrIp("172.16.0.0/24")
            .build());

        var default2 = new Switch("default2", SwitchArgs.builder()
            .vpcId(defaultNetwork.id())
            .cidrBlock("172.16.1.0/24")
            .zoneId(default_.zones()[0].id())
            .vswitchName(String.format("%s-bar", name))
            .build());

        var defaultScalingGroup = new ScalingGroup("defaultScalingGroup", ScalingGroupArgs.builder()
            .minSize(1)
            .maxSize(1)
            .scalingGroupName(myName)
            .defaultCooldown(20)
            .vswitchIds(            
                defaultSwitch.id(),
                default2.id())
            .removalPolicies(            
                "OldestInstance",
                "NewestInstance")
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  defaultInteger:
    type: random:integer
    name: default
    properties:
      min: 10000
      max: 99999
  defaultNetwork:
    type: alicloud:vpc:Network
    name: default
    properties:
      vpcName: ${myName}
      cidrBlock: 172.16.0.0/16
  defaultSwitch:
    type: alicloud:vpc:Switch
    name: default
    properties:
      vpcId: ${defaultNetwork.id}
      cidrBlock: 172.16.0.0/24
      zoneId: ${default.zones[0].id}
      vswitchName: ${myName}
  defaultSecurityGroup:
    type: alicloud:ecs:SecurityGroup
    name: default
    properties:
      securityGroupName: ${myName}
      vpcId: ${defaultNetwork.id}
  defaultSecurityGroupRule:
    type: alicloud:ecs:SecurityGroupRule
    name: default
    properties:
      type: ingress
      ipProtocol: tcp
      nicType: intranet
      policy: accept
      portRange: 22/22
      priority: 1
      securityGroupId: ${defaultSecurityGroup.id}
      cidrIp: 172.16.0.0/24
  default2:
    type: alicloud:vpc:Switch
    properties:
      vpcId: ${defaultNetwork.id}
      cidrBlock: 172.16.1.0/24
      zoneId: ${default.zones[0].id}
      vswitchName: ${name}-bar
  defaultScalingGroup:
    type: alicloud:ess:ScalingGroup
    name: default
    properties:
      minSize: 1
      maxSize: 1
      scalingGroupName: ${myName}
      defaultCooldown: 20
      vswitchIds:
        - ${defaultSwitch.id}
        - ${default2.id}
      removalPolicies:
        - OldestInstance
        - NewestInstance
variables:
  myName: ${name}-${defaultInteger.result}
  default:
    fn::invoke:
      function: alicloud:getZones
      arguments:
        availableDiskCategory: cloud_efficiency
        availableResourceCreation: VSwitch
  defaultGetInstanceTypes:
    fn::invoke:
      function: alicloud:ecs:getInstanceTypes
      arguments:
        availabilityZone: ${default.zones[0].id}
        cpuCoreCount: 2
        memorySize: 4
  defaultGetImages:
    fn::invoke:
      function: alicloud:ecs:getImages
      arguments:
        nameRegex: ^ubuntu_18.*64
        mostRecent: true
        owners: system
Copy

Module Support

You can use to the existing autoscaling module to create a scaling group, configuration and lifecycle hook one-click.

Create ScalingGroup Resource

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

Constructor syntax

new ScalingGroup(name: string, args: ScalingGroupArgs, opts?: CustomResourceOptions);
@overload
def ScalingGroup(resource_name: str,
                 args: ScalingGroupArgs,
                 opts: Optional[ResourceOptions] = None)

@overload
def ScalingGroup(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 max_size: Optional[int] = None,
                 min_size: Optional[int] = None,
                 launch_template_overrides: Optional[Sequence[ScalingGroupLaunchTemplateOverrideArgs]] = None,
                 vswitch_id: Optional[str] = None,
                 capacity_options_on_demand_base_capacity: Optional[int] = None,
                 loadbalancer_ids: Optional[Sequence[str]] = None,
                 capacity_options_spot_auto_replace_on_demand: Optional[bool] = None,
                 compensate_with_on_demand: Optional[bool] = None,
                 container_group_id: Optional[str] = None,
                 db_instance_ids: Optional[Sequence[str]] = None,
                 default_cooldown: Optional[int] = None,
                 desired_capacity: Optional[int] = None,
                 group_deletion_protection: Optional[bool] = None,
                 group_type: Optional[str] = None,
                 health_check_type: Optional[str] = None,
                 health_check_types: Optional[Sequence[str]] = None,
                 instance_id: Optional[str] = None,
                 launch_template_id: Optional[str] = None,
                 alb_server_groups: Optional[Sequence[ScalingGroupAlbServerGroupArgs]] = None,
                 launch_template_version: Optional[str] = None,
                 capacity_options_on_demand_percentage_above_base_capacity: Optional[int] = None,
                 capacity_options_compensate_with_on_demand: Optional[bool] = None,
                 allocation_strategy: Optional[str] = None,
                 az_balance: Optional[bool] = None,
                 multi_az_policy: Optional[str] = None,
                 on_demand_base_capacity: Optional[int] = None,
                 on_demand_percentage_above_base_capacity: Optional[int] = None,
                 protected_instances: Optional[Sequence[str]] = None,
                 removal_policies: Optional[Sequence[str]] = None,
                 resource_group_id: Optional[str] = None,
                 scaling_group_name: Optional[str] = None,
                 scaling_policy: Optional[str] = None,
                 spot_allocation_strategy: Optional[str] = None,
                 spot_instance_pools: Optional[int] = None,
                 spot_instance_remedy: Optional[bool] = None,
                 stop_instance_timeout: Optional[int] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 max_instance_lifetime: Optional[int] = None,
                 vswitch_ids: Optional[Sequence[str]] = None)
func NewScalingGroup(ctx *Context, name string, args ScalingGroupArgs, opts ...ResourceOption) (*ScalingGroup, error)
public ScalingGroup(string name, ScalingGroupArgs args, CustomResourceOptions? opts = null)
public ScalingGroup(String name, ScalingGroupArgs args)
public ScalingGroup(String name, ScalingGroupArgs args, CustomResourceOptions options)
type: alicloud:ess:ScalingGroup
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. ScalingGroupArgs
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. ScalingGroupArgs
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. ScalingGroupArgs
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. ScalingGroupArgs
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. ScalingGroupArgs
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 scalingGroupResource = new AliCloud.Ess.ScalingGroup("scalingGroupResource", new()
{
    MaxSize = 0,
    MinSize = 0,
    LaunchTemplateOverrides = new[]
    {
        new AliCloud.Ess.Inputs.ScalingGroupLaunchTemplateOverrideArgs
        {
            InstanceType = "string",
            SpotPriceLimit = 0,
            WeightedCapacity = 0,
        },
    },
    CapacityOptionsOnDemandBaseCapacity = 0,
    LoadbalancerIds = new[]
    {
        "string",
    },
    CapacityOptionsSpotAutoReplaceOnDemand = false,
    CompensateWithOnDemand = false,
    ContainerGroupId = "string",
    DbInstanceIds = new[]
    {
        "string",
    },
    DefaultCooldown = 0,
    DesiredCapacity = 0,
    GroupDeletionProtection = false,
    GroupType = "string",
    HealthCheckType = "string",
    HealthCheckTypes = new[]
    {
        "string",
    },
    InstanceId = "string",
    LaunchTemplateId = "string",
    AlbServerGroups = new[]
    {
        new AliCloud.Ess.Inputs.ScalingGroupAlbServerGroupArgs
        {
            AlbServerGroupId = "string",
            Port = 0,
            Weight = 0,
        },
    },
    LaunchTemplateVersion = "string",
    CapacityOptionsOnDemandPercentageAboveBaseCapacity = 0,
    CapacityOptionsCompensateWithOnDemand = false,
    AllocationStrategy = "string",
    AzBalance = false,
    MultiAzPolicy = "string",
    OnDemandBaseCapacity = 0,
    OnDemandPercentageAboveBaseCapacity = 0,
    ProtectedInstances = new[]
    {
        "string",
    },
    RemovalPolicies = new[]
    {
        "string",
    },
    ResourceGroupId = "string",
    ScalingGroupName = "string",
    ScalingPolicy = "string",
    SpotAllocationStrategy = "string",
    SpotInstancePools = 0,
    SpotInstanceRemedy = false,
    StopInstanceTimeout = 0,
    Tags = 
    {
        { "string", "string" },
    },
    MaxInstanceLifetime = 0,
    VswitchIds = new[]
    {
        "string",
    },
});
Copy
example, err := ess.NewScalingGroup(ctx, "scalingGroupResource", &ess.ScalingGroupArgs{
	MaxSize: pulumi.Int(0),
	MinSize: pulumi.Int(0),
	LaunchTemplateOverrides: ess.ScalingGroupLaunchTemplateOverrideArray{
		&ess.ScalingGroupLaunchTemplateOverrideArgs{
			InstanceType:     pulumi.String("string"),
			SpotPriceLimit:   pulumi.Float64(0),
			WeightedCapacity: pulumi.Int(0),
		},
	},
	CapacityOptionsOnDemandBaseCapacity: pulumi.Int(0),
	LoadbalancerIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	CapacityOptionsSpotAutoReplaceOnDemand: pulumi.Bool(false),
	CompensateWithOnDemand:                 pulumi.Bool(false),
	ContainerGroupId:                       pulumi.String("string"),
	DbInstanceIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	DefaultCooldown:         pulumi.Int(0),
	DesiredCapacity:         pulumi.Int(0),
	GroupDeletionProtection: pulumi.Bool(false),
	GroupType:               pulumi.String("string"),
	HealthCheckType:         pulumi.String("string"),
	HealthCheckTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	InstanceId:       pulumi.String("string"),
	LaunchTemplateId: pulumi.String("string"),
	AlbServerGroups: ess.ScalingGroupAlbServerGroupArray{
		&ess.ScalingGroupAlbServerGroupArgs{
			AlbServerGroupId: pulumi.String("string"),
			Port:             pulumi.Int(0),
			Weight:           pulumi.Int(0),
		},
	},
	LaunchTemplateVersion:                              pulumi.String("string"),
	CapacityOptionsOnDemandPercentageAboveBaseCapacity: pulumi.Int(0),
	CapacityOptionsCompensateWithOnDemand:              pulumi.Bool(false),
	AllocationStrategy:                                 pulumi.String("string"),
	AzBalance:                                          pulumi.Bool(false),
	MultiAzPolicy:                                      pulumi.String("string"),
	OnDemandBaseCapacity:                               pulumi.Int(0),
	OnDemandPercentageAboveBaseCapacity:                pulumi.Int(0),
	ProtectedInstances: pulumi.StringArray{
		pulumi.String("string"),
	},
	RemovalPolicies: pulumi.StringArray{
		pulumi.String("string"),
	},
	ResourceGroupId:        pulumi.String("string"),
	ScalingGroupName:       pulumi.String("string"),
	ScalingPolicy:          pulumi.String("string"),
	SpotAllocationStrategy: pulumi.String("string"),
	SpotInstancePools:      pulumi.Int(0),
	SpotInstanceRemedy:     pulumi.Bool(false),
	StopInstanceTimeout:    pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	MaxInstanceLifetime: pulumi.Int(0),
	VswitchIds: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var scalingGroupResource = new ScalingGroup("scalingGroupResource", ScalingGroupArgs.builder()
    .maxSize(0)
    .minSize(0)
    .launchTemplateOverrides(ScalingGroupLaunchTemplateOverrideArgs.builder()
        .instanceType("string")
        .spotPriceLimit(0)
        .weightedCapacity(0)
        .build())
    .capacityOptionsOnDemandBaseCapacity(0)
    .loadbalancerIds("string")
    .capacityOptionsSpotAutoReplaceOnDemand(false)
    .compensateWithOnDemand(false)
    .containerGroupId("string")
    .dbInstanceIds("string")
    .defaultCooldown(0)
    .desiredCapacity(0)
    .groupDeletionProtection(false)
    .groupType("string")
    .healthCheckType("string")
    .healthCheckTypes("string")
    .instanceId("string")
    .launchTemplateId("string")
    .albServerGroups(ScalingGroupAlbServerGroupArgs.builder()
        .albServerGroupId("string")
        .port(0)
        .weight(0)
        .build())
    .launchTemplateVersion("string")
    .capacityOptionsOnDemandPercentageAboveBaseCapacity(0)
    .capacityOptionsCompensateWithOnDemand(false)
    .allocationStrategy("string")
    .azBalance(false)
    .multiAzPolicy("string")
    .onDemandBaseCapacity(0)
    .onDemandPercentageAboveBaseCapacity(0)
    .protectedInstances("string")
    .removalPolicies("string")
    .resourceGroupId("string")
    .scalingGroupName("string")
    .scalingPolicy("string")
    .spotAllocationStrategy("string")
    .spotInstancePools(0)
    .spotInstanceRemedy(false)
    .stopInstanceTimeout(0)
    .tags(Map.of("string", "string"))
    .maxInstanceLifetime(0)
    .vswitchIds("string")
    .build());
Copy
scaling_group_resource = alicloud.ess.ScalingGroup("scalingGroupResource",
    max_size=0,
    min_size=0,
    launch_template_overrides=[{
        "instance_type": "string",
        "spot_price_limit": 0,
        "weighted_capacity": 0,
    }],
    capacity_options_on_demand_base_capacity=0,
    loadbalancer_ids=["string"],
    capacity_options_spot_auto_replace_on_demand=False,
    compensate_with_on_demand=False,
    container_group_id="string",
    db_instance_ids=["string"],
    default_cooldown=0,
    desired_capacity=0,
    group_deletion_protection=False,
    group_type="string",
    health_check_type="string",
    health_check_types=["string"],
    instance_id="string",
    launch_template_id="string",
    alb_server_groups=[{
        "alb_server_group_id": "string",
        "port": 0,
        "weight": 0,
    }],
    launch_template_version="string",
    capacity_options_on_demand_percentage_above_base_capacity=0,
    capacity_options_compensate_with_on_demand=False,
    allocation_strategy="string",
    az_balance=False,
    multi_az_policy="string",
    on_demand_base_capacity=0,
    on_demand_percentage_above_base_capacity=0,
    protected_instances=["string"],
    removal_policies=["string"],
    resource_group_id="string",
    scaling_group_name="string",
    scaling_policy="string",
    spot_allocation_strategy="string",
    spot_instance_pools=0,
    spot_instance_remedy=False,
    stop_instance_timeout=0,
    tags={
        "string": "string",
    },
    max_instance_lifetime=0,
    vswitch_ids=["string"])
Copy
const scalingGroupResource = new alicloud.ess.ScalingGroup("scalingGroupResource", {
    maxSize: 0,
    minSize: 0,
    launchTemplateOverrides: [{
        instanceType: "string",
        spotPriceLimit: 0,
        weightedCapacity: 0,
    }],
    capacityOptionsOnDemandBaseCapacity: 0,
    loadbalancerIds: ["string"],
    capacityOptionsSpotAutoReplaceOnDemand: false,
    compensateWithOnDemand: false,
    containerGroupId: "string",
    dbInstanceIds: ["string"],
    defaultCooldown: 0,
    desiredCapacity: 0,
    groupDeletionProtection: false,
    groupType: "string",
    healthCheckType: "string",
    healthCheckTypes: ["string"],
    instanceId: "string",
    launchTemplateId: "string",
    albServerGroups: [{
        albServerGroupId: "string",
        port: 0,
        weight: 0,
    }],
    launchTemplateVersion: "string",
    capacityOptionsOnDemandPercentageAboveBaseCapacity: 0,
    capacityOptionsCompensateWithOnDemand: false,
    allocationStrategy: "string",
    azBalance: false,
    multiAzPolicy: "string",
    onDemandBaseCapacity: 0,
    onDemandPercentageAboveBaseCapacity: 0,
    protectedInstances: ["string"],
    removalPolicies: ["string"],
    resourceGroupId: "string",
    scalingGroupName: "string",
    scalingPolicy: "string",
    spotAllocationStrategy: "string",
    spotInstancePools: 0,
    spotInstanceRemedy: false,
    stopInstanceTimeout: 0,
    tags: {
        string: "string",
    },
    maxInstanceLifetime: 0,
    vswitchIds: ["string"],
});
Copy
type: alicloud:ess:ScalingGroup
properties:
    albServerGroups:
        - albServerGroupId: string
          port: 0
          weight: 0
    allocationStrategy: string
    azBalance: false
    capacityOptionsCompensateWithOnDemand: false
    capacityOptionsOnDemandBaseCapacity: 0
    capacityOptionsOnDemandPercentageAboveBaseCapacity: 0
    capacityOptionsSpotAutoReplaceOnDemand: false
    compensateWithOnDemand: false
    containerGroupId: string
    dbInstanceIds:
        - string
    defaultCooldown: 0
    desiredCapacity: 0
    groupDeletionProtection: false
    groupType: string
    healthCheckType: string
    healthCheckTypes:
        - string
    instanceId: string
    launchTemplateId: string
    launchTemplateOverrides:
        - instanceType: string
          spotPriceLimit: 0
          weightedCapacity: 0
    launchTemplateVersion: string
    loadbalancerIds:
        - string
    maxInstanceLifetime: 0
    maxSize: 0
    minSize: 0
    multiAzPolicy: string
    onDemandBaseCapacity: 0
    onDemandPercentageAboveBaseCapacity: 0
    protectedInstances:
        - string
    removalPolicies:
        - string
    resourceGroupId: string
    scalingGroupName: string
    scalingPolicy: string
    spotAllocationStrategy: string
    spotInstancePools: 0
    spotInstanceRemedy: false
    stopInstanceTimeout: 0
    tags:
        string: string
    vswitchIds:
        - string
Copy

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

MaxSize This property is required. int
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
MinSize This property is required. int
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
AlbServerGroups List<Pulumi.AliCloud.Ess.Inputs.ScalingGroupAlbServerGroup>
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
AllocationStrategy string
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
AzBalance bool
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
CapacityOptionsCompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
CapacityOptionsOnDemandBaseCapacity int
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
CapacityOptionsOnDemandPercentageAboveBaseCapacity int
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
CapacityOptionsSpotAutoReplaceOnDemand bool
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
CompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
ContainerGroupId Changes to this property will trigger replacement. string
The ID of the elastic container instance.
DbInstanceIds List<string>
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
DefaultCooldown int
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
DesiredCapacity int
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
GroupDeletionProtection bool
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
GroupType Changes to this property will trigger replacement. string
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
HealthCheckType string
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
HealthCheckTypes List<string>
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
InstanceId Changes to this property will trigger replacement. string
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
LaunchTemplateId string
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
LaunchTemplateOverrides List<Pulumi.AliCloud.Ess.Inputs.ScalingGroupLaunchTemplateOverride>
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
LaunchTemplateVersion string
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
LoadbalancerIds List<string>
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
MaxInstanceLifetime int
The maximum life span of an instance in the scaling group. Unit: seconds.
MultiAzPolicy Changes to this property will trigger replacement. string
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
OnDemandBaseCapacity int
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
OnDemandPercentageAboveBaseCapacity int
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
ProtectedInstances List<string>
Set or unset instances within group into protected status.
RemovalPolicies List<string>
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
ResourceGroupId string
The ID of the resource group to which you want to add the scaling group.
ScalingGroupName string
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
ScalingPolicy string
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
SpotAllocationStrategy string
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
SpotInstancePools int
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
SpotInstanceRemedy bool
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
StopInstanceTimeout int
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
VswitchId string
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

VswitchIds List<string>
List of virtual switch IDs in which the ecs instances to be launched.
MaxSize This property is required. int
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
MinSize This property is required. int
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
AlbServerGroups []ScalingGroupAlbServerGroupArgs
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
AllocationStrategy string
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
AzBalance bool
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
CapacityOptionsCompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
CapacityOptionsOnDemandBaseCapacity int
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
CapacityOptionsOnDemandPercentageAboveBaseCapacity int
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
CapacityOptionsSpotAutoReplaceOnDemand bool
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
CompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
ContainerGroupId Changes to this property will trigger replacement. string
The ID of the elastic container instance.
DbInstanceIds []string
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
DefaultCooldown int
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
DesiredCapacity int
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
GroupDeletionProtection bool
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
GroupType Changes to this property will trigger replacement. string
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
HealthCheckType string
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
HealthCheckTypes []string
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
InstanceId Changes to this property will trigger replacement. string
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
LaunchTemplateId string
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
LaunchTemplateOverrides []ScalingGroupLaunchTemplateOverrideArgs
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
LaunchTemplateVersion string
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
LoadbalancerIds []string
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
MaxInstanceLifetime int
The maximum life span of an instance in the scaling group. Unit: seconds.
MultiAzPolicy Changes to this property will trigger replacement. string
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
OnDemandBaseCapacity int
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
OnDemandPercentageAboveBaseCapacity int
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
ProtectedInstances []string
Set or unset instances within group into protected status.
RemovalPolicies []string
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
ResourceGroupId string
The ID of the resource group to which you want to add the scaling group.
ScalingGroupName string
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
ScalingPolicy string
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
SpotAllocationStrategy string
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
SpotInstancePools int
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
SpotInstanceRemedy bool
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
StopInstanceTimeout int
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
Tags map[string]string
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
VswitchId string
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

VswitchIds []string
List of virtual switch IDs in which the ecs instances to be launched.
maxSize This property is required. Integer
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
minSize This property is required. Integer
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
albServerGroups List<ScalingGroupAlbServerGroup>
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocationStrategy String
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
azBalance Boolean
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacityOptionsCompensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacityOptionsOnDemandBaseCapacity Integer
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacityOptionsOnDemandPercentageAboveBaseCapacity Integer
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacityOptionsSpotAutoReplaceOnDemand Boolean
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
containerGroupId Changes to this property will trigger replacement. String
The ID of the elastic container instance.
dbInstanceIds List<String>
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
defaultCooldown Integer
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desiredCapacity Integer
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
groupDeletionProtection Boolean
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
groupType Changes to this property will trigger replacement. String
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
healthCheckType String
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
healthCheckTypes List<String>
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instanceId Changes to this property will trigger replacement. String
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launchTemplateId String
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launchTemplateOverrides List<ScalingGroupLaunchTemplateOverride>
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launchTemplateVersion String
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancerIds List<String>
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
maxInstanceLifetime Integer
The maximum life span of an instance in the scaling group. Unit: seconds.
multiAzPolicy Changes to this property will trigger replacement. String
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
onDemandBaseCapacity Integer
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
onDemandPercentageAboveBaseCapacity Integer
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protectedInstances List<String>
Set or unset instances within group into protected status.
removalPolicies List<String>
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resourceGroupId String
The ID of the resource group to which you want to add the scaling group.
scalingGroupName String
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scalingPolicy String
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spotAllocationStrategy String
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spotInstancePools Integer
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spotInstanceRemedy Boolean
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stopInstanceTimeout Integer
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags Map<String,String>
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitchId String
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitchIds List<String>
List of virtual switch IDs in which the ecs instances to be launched.
maxSize This property is required. number
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
minSize This property is required. number
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
albServerGroups ScalingGroupAlbServerGroup[]
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocationStrategy string
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
azBalance boolean
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacityOptionsCompensateWithOnDemand boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacityOptionsOnDemandBaseCapacity number
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacityOptionsOnDemandPercentageAboveBaseCapacity number
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacityOptionsSpotAutoReplaceOnDemand boolean
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensateWithOnDemand boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
containerGroupId Changes to this property will trigger replacement. string
The ID of the elastic container instance.
dbInstanceIds string[]
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
defaultCooldown number
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desiredCapacity number
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
groupDeletionProtection boolean
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
groupType Changes to this property will trigger replacement. string
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
healthCheckType string
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
healthCheckTypes string[]
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instanceId Changes to this property will trigger replacement. string
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launchTemplateId string
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launchTemplateOverrides ScalingGroupLaunchTemplateOverride[]
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launchTemplateVersion string
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancerIds string[]
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
maxInstanceLifetime number
The maximum life span of an instance in the scaling group. Unit: seconds.
multiAzPolicy Changes to this property will trigger replacement. string
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
onDemandBaseCapacity number
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
onDemandPercentageAboveBaseCapacity number
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protectedInstances string[]
Set or unset instances within group into protected status.
removalPolicies string[]
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resourceGroupId string
The ID of the resource group to which you want to add the scaling group.
scalingGroupName string
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scalingPolicy string
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spotAllocationStrategy string
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spotInstancePools number
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spotInstanceRemedy boolean
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stopInstanceTimeout number
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags {[key: string]: string}
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitchId string
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitchIds string[]
List of virtual switch IDs in which the ecs instances to be launched.
max_size This property is required. int
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
min_size This property is required. int
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
alb_server_groups Sequence[ScalingGroupAlbServerGroupArgs]
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocation_strategy str
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
az_balance bool
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacity_options_compensate_with_on_demand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacity_options_on_demand_base_capacity int
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacity_options_on_demand_percentage_above_base_capacity int
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacity_options_spot_auto_replace_on_demand bool
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensate_with_on_demand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
container_group_id Changes to this property will trigger replacement. str
The ID of the elastic container instance.
db_instance_ids Sequence[str]
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
default_cooldown int
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desired_capacity int
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
group_deletion_protection bool
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
group_type Changes to this property will trigger replacement. str
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
health_check_type str
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
health_check_types Sequence[str]
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instance_id Changes to this property will trigger replacement. str
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launch_template_id str
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launch_template_overrides Sequence[ScalingGroupLaunchTemplateOverrideArgs]
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launch_template_version str
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancer_ids Sequence[str]
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
max_instance_lifetime int
The maximum life span of an instance in the scaling group. Unit: seconds.
multi_az_policy Changes to this property will trigger replacement. str
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
on_demand_base_capacity int
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
on_demand_percentage_above_base_capacity int
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protected_instances Sequence[str]
Set or unset instances within group into protected status.
removal_policies Sequence[str]
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resource_group_id str
The ID of the resource group to which you want to add the scaling group.
scaling_group_name str
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scaling_policy str
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spot_allocation_strategy str
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spot_instance_pools int
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spot_instance_remedy bool
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stop_instance_timeout int
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags Mapping[str, str]
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitch_id str
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitch_ids Sequence[str]
List of virtual switch IDs in which the ecs instances to be launched.
maxSize This property is required. Number
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
minSize This property is required. Number
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
albServerGroups List<Property Map>
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocationStrategy String
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
azBalance Boolean
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacityOptionsCompensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacityOptionsOnDemandBaseCapacity Number
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacityOptionsOnDemandPercentageAboveBaseCapacity Number
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacityOptionsSpotAutoReplaceOnDemand Boolean
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
containerGroupId Changes to this property will trigger replacement. String
The ID of the elastic container instance.
dbInstanceIds List<String>
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
defaultCooldown Number
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desiredCapacity Number
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
groupDeletionProtection Boolean
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
groupType Changes to this property will trigger replacement. String
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
healthCheckType String
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
healthCheckTypes List<String>
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instanceId Changes to this property will trigger replacement. String
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launchTemplateId String
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launchTemplateOverrides List<Property Map>
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launchTemplateVersion String
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancerIds List<String>
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
maxInstanceLifetime Number
The maximum life span of an instance in the scaling group. Unit: seconds.
multiAzPolicy Changes to this property will trigger replacement. String
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
onDemandBaseCapacity Number
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
onDemandPercentageAboveBaseCapacity Number
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protectedInstances List<String>
Set or unset instances within group into protected status.
removalPolicies List<String>
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resourceGroupId String
The ID of the resource group to which you want to add the scaling group.
scalingGroupName String
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scalingPolicy String
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spotAllocationStrategy String
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spotInstancePools Number
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spotInstanceRemedy Boolean
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stopInstanceTimeout Number
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags Map<String>
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitchId String
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitchIds List<String>
List of virtual switch IDs in which the ecs instances to be launched.

Outputs

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

Get an existing ScalingGroup 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?: ScalingGroupState, opts?: CustomResourceOptions): ScalingGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        alb_server_groups: Optional[Sequence[ScalingGroupAlbServerGroupArgs]] = None,
        allocation_strategy: Optional[str] = None,
        az_balance: Optional[bool] = None,
        capacity_options_compensate_with_on_demand: Optional[bool] = None,
        capacity_options_on_demand_base_capacity: Optional[int] = None,
        capacity_options_on_demand_percentage_above_base_capacity: Optional[int] = None,
        capacity_options_spot_auto_replace_on_demand: Optional[bool] = None,
        compensate_with_on_demand: Optional[bool] = None,
        container_group_id: Optional[str] = None,
        db_instance_ids: Optional[Sequence[str]] = None,
        default_cooldown: Optional[int] = None,
        desired_capacity: Optional[int] = None,
        group_deletion_protection: Optional[bool] = None,
        group_type: Optional[str] = None,
        health_check_type: Optional[str] = None,
        health_check_types: Optional[Sequence[str]] = None,
        instance_id: Optional[str] = None,
        launch_template_id: Optional[str] = None,
        launch_template_overrides: Optional[Sequence[ScalingGroupLaunchTemplateOverrideArgs]] = None,
        launch_template_version: Optional[str] = None,
        loadbalancer_ids: Optional[Sequence[str]] = None,
        max_instance_lifetime: Optional[int] = None,
        max_size: Optional[int] = None,
        min_size: Optional[int] = None,
        multi_az_policy: Optional[str] = None,
        on_demand_base_capacity: Optional[int] = None,
        on_demand_percentage_above_base_capacity: Optional[int] = None,
        protected_instances: Optional[Sequence[str]] = None,
        removal_policies: Optional[Sequence[str]] = None,
        resource_group_id: Optional[str] = None,
        scaling_group_name: Optional[str] = None,
        scaling_policy: Optional[str] = None,
        spot_allocation_strategy: Optional[str] = None,
        spot_instance_pools: Optional[int] = None,
        spot_instance_remedy: Optional[bool] = None,
        stop_instance_timeout: Optional[int] = None,
        tags: Optional[Mapping[str, str]] = None,
        vswitch_id: Optional[str] = None,
        vswitch_ids: Optional[Sequence[str]] = None) -> ScalingGroup
func GetScalingGroup(ctx *Context, name string, id IDInput, state *ScalingGroupState, opts ...ResourceOption) (*ScalingGroup, error)
public static ScalingGroup Get(string name, Input<string> id, ScalingGroupState? state, CustomResourceOptions? opts = null)
public static ScalingGroup get(String name, Output<String> id, ScalingGroupState state, CustomResourceOptions options)
resources:  _:    type: alicloud:ess:ScalingGroup    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:
AlbServerGroups List<Pulumi.AliCloud.Ess.Inputs.ScalingGroupAlbServerGroup>
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
AllocationStrategy string
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
AzBalance bool
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
CapacityOptionsCompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
CapacityOptionsOnDemandBaseCapacity int
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
CapacityOptionsOnDemandPercentageAboveBaseCapacity int
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
CapacityOptionsSpotAutoReplaceOnDemand bool
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
CompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
ContainerGroupId Changes to this property will trigger replacement. string
The ID of the elastic container instance.
DbInstanceIds List<string>
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
DefaultCooldown int
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
DesiredCapacity int
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
GroupDeletionProtection bool
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
GroupType Changes to this property will trigger replacement. string
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
HealthCheckType string
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
HealthCheckTypes List<string>
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
InstanceId Changes to this property will trigger replacement. string
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
LaunchTemplateId string
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
LaunchTemplateOverrides List<Pulumi.AliCloud.Ess.Inputs.ScalingGroupLaunchTemplateOverride>
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
LaunchTemplateVersion string
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
LoadbalancerIds List<string>
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
MaxInstanceLifetime int
The maximum life span of an instance in the scaling group. Unit: seconds.
MaxSize int
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
MinSize int
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
MultiAzPolicy Changes to this property will trigger replacement. string
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
OnDemandBaseCapacity int
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
OnDemandPercentageAboveBaseCapacity int
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
ProtectedInstances List<string>
Set or unset instances within group into protected status.
RemovalPolicies List<string>
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
ResourceGroupId string
The ID of the resource group to which you want to add the scaling group.
ScalingGroupName string
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
ScalingPolicy string
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
SpotAllocationStrategy string
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
SpotInstancePools int
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
SpotInstanceRemedy bool
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
StopInstanceTimeout int
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
VswitchId string
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

VswitchIds List<string>
List of virtual switch IDs in which the ecs instances to be launched.
AlbServerGroups []ScalingGroupAlbServerGroupArgs
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
AllocationStrategy string
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
AzBalance bool
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
CapacityOptionsCompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
CapacityOptionsOnDemandBaseCapacity int
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
CapacityOptionsOnDemandPercentageAboveBaseCapacity int
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
CapacityOptionsSpotAutoReplaceOnDemand bool
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
CompensateWithOnDemand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
ContainerGroupId Changes to this property will trigger replacement. string
The ID of the elastic container instance.
DbInstanceIds []string
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
DefaultCooldown int
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
DesiredCapacity int
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
GroupDeletionProtection bool
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
GroupType Changes to this property will trigger replacement. string
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
HealthCheckType string
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
HealthCheckTypes []string
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
InstanceId Changes to this property will trigger replacement. string
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
LaunchTemplateId string
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
LaunchTemplateOverrides []ScalingGroupLaunchTemplateOverrideArgs
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
LaunchTemplateVersion string
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
LoadbalancerIds []string
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
MaxInstanceLifetime int
The maximum life span of an instance in the scaling group. Unit: seconds.
MaxSize int
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
MinSize int
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
MultiAzPolicy Changes to this property will trigger replacement. string
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
OnDemandBaseCapacity int
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
OnDemandPercentageAboveBaseCapacity int
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
ProtectedInstances []string
Set or unset instances within group into protected status.
RemovalPolicies []string
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
ResourceGroupId string
The ID of the resource group to which you want to add the scaling group.
ScalingGroupName string
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
ScalingPolicy string
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
SpotAllocationStrategy string
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
SpotInstancePools int
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
SpotInstanceRemedy bool
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
StopInstanceTimeout int
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
Tags map[string]string
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
VswitchId string
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

VswitchIds []string
List of virtual switch IDs in which the ecs instances to be launched.
albServerGroups List<ScalingGroupAlbServerGroup>
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocationStrategy String
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
azBalance Boolean
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacityOptionsCompensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacityOptionsOnDemandBaseCapacity Integer
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacityOptionsOnDemandPercentageAboveBaseCapacity Integer
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacityOptionsSpotAutoReplaceOnDemand Boolean
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
containerGroupId Changes to this property will trigger replacement. String
The ID of the elastic container instance.
dbInstanceIds List<String>
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
defaultCooldown Integer
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desiredCapacity Integer
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
groupDeletionProtection Boolean
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
groupType Changes to this property will trigger replacement. String
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
healthCheckType String
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
healthCheckTypes List<String>
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instanceId Changes to this property will trigger replacement. String
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launchTemplateId String
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launchTemplateOverrides List<ScalingGroupLaunchTemplateOverride>
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launchTemplateVersion String
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancerIds List<String>
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
maxInstanceLifetime Integer
The maximum life span of an instance in the scaling group. Unit: seconds.
maxSize Integer
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
minSize Integer
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
multiAzPolicy Changes to this property will trigger replacement. String
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
onDemandBaseCapacity Integer
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
onDemandPercentageAboveBaseCapacity Integer
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protectedInstances List<String>
Set or unset instances within group into protected status.
removalPolicies List<String>
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resourceGroupId String
The ID of the resource group to which you want to add the scaling group.
scalingGroupName String
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scalingPolicy String
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spotAllocationStrategy String
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spotInstancePools Integer
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spotInstanceRemedy Boolean
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stopInstanceTimeout Integer
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags Map<String,String>
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitchId String
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitchIds List<String>
List of virtual switch IDs in which the ecs instances to be launched.
albServerGroups ScalingGroupAlbServerGroup[]
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocationStrategy string
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
azBalance boolean
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacityOptionsCompensateWithOnDemand boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacityOptionsOnDemandBaseCapacity number
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacityOptionsOnDemandPercentageAboveBaseCapacity number
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacityOptionsSpotAutoReplaceOnDemand boolean
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensateWithOnDemand boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
containerGroupId Changes to this property will trigger replacement. string
The ID of the elastic container instance.
dbInstanceIds string[]
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
defaultCooldown number
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desiredCapacity number
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
groupDeletionProtection boolean
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
groupType Changes to this property will trigger replacement. string
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
healthCheckType string
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
healthCheckTypes string[]
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instanceId Changes to this property will trigger replacement. string
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launchTemplateId string
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launchTemplateOverrides ScalingGroupLaunchTemplateOverride[]
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launchTemplateVersion string
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancerIds string[]
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
maxInstanceLifetime number
The maximum life span of an instance in the scaling group. Unit: seconds.
maxSize number
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
minSize number
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
multiAzPolicy Changes to this property will trigger replacement. string
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
onDemandBaseCapacity number
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
onDemandPercentageAboveBaseCapacity number
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protectedInstances string[]
Set or unset instances within group into protected status.
removalPolicies string[]
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resourceGroupId string
The ID of the resource group to which you want to add the scaling group.
scalingGroupName string
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scalingPolicy string
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spotAllocationStrategy string
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spotInstancePools number
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spotInstanceRemedy boolean
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stopInstanceTimeout number
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags {[key: string]: string}
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitchId string
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitchIds string[]
List of virtual switch IDs in which the ecs instances to be launched.
alb_server_groups Sequence[ScalingGroupAlbServerGroupArgs]
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocation_strategy str
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
az_balance bool
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacity_options_compensate_with_on_demand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacity_options_on_demand_base_capacity int
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacity_options_on_demand_percentage_above_base_capacity int
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacity_options_spot_auto_replace_on_demand bool
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensate_with_on_demand bool
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
container_group_id Changes to this property will trigger replacement. str
The ID of the elastic container instance.
db_instance_ids Sequence[str]
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
default_cooldown int
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desired_capacity int
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
group_deletion_protection bool
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
group_type Changes to this property will trigger replacement. str
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
health_check_type str
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
health_check_types Sequence[str]
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instance_id Changes to this property will trigger replacement. str
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launch_template_id str
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launch_template_overrides Sequence[ScalingGroupLaunchTemplateOverrideArgs]
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launch_template_version str
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancer_ids Sequence[str]
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
max_instance_lifetime int
The maximum life span of an instance in the scaling group. Unit: seconds.
max_size int
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
min_size int
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
multi_az_policy Changes to this property will trigger replacement. str
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
on_demand_base_capacity int
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
on_demand_percentage_above_base_capacity int
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protected_instances Sequence[str]
Set or unset instances within group into protected status.
removal_policies Sequence[str]
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resource_group_id str
The ID of the resource group to which you want to add the scaling group.
scaling_group_name str
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scaling_policy str
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spot_allocation_strategy str
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spot_instance_pools int
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spot_instance_remedy bool
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stop_instance_timeout int
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags Mapping[str, str]
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitch_id str
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitch_ids Sequence[str]
List of virtual switch IDs in which the ecs instances to be launched.
albServerGroups List<Property Map>
If a Serve ALB instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server ALB instance. See alb_server_group below for details.
allocationStrategy String
The allocation policy of instances. Auto Scaling selects instance types based on the allocation policy to create instances. The policy can be applied to pay-as-you-go instances and preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
azBalance Boolean
Specifies whether to evenly distribute instances in the scaling group across multiple zones. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
capacityOptionsCompensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
capacityOptionsOnDemandBaseCapacity Number
The minimum number of pay-as-you-go instances that must be contained in the scaling group. When the actual number of pay-as-you-go instances in the scaling group drops below the value of this parameter, Auto Scaling preferentially creates pay-as-you-go instances. Valid values: 0 to 1000. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 0.
capacityOptionsOnDemandPercentageAboveBaseCapacity Number
The percentage of pay-as-you-go instances in the excess instances when the minimum number of pay-as-you-go instances is reached. 'on_demand_base_capacity' specifies the minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 100. If you set 'multi_az_policy' to COMPOSABLE, the default value of this parameter is 100.
capacityOptionsSpotAutoReplaceOnDemand Boolean
Specifies whether to replace pay-as-you-go instances with preemptible instances. If you specify 'compensate_with_on_demand', it may result in a higher percentage of pay-as-you-go instances compared to the value of 'on_demand_percentage_above_base_capacity'. If you specify this parameter, Auto Scaling preferentially deploys preemptible instances to replace the surplus pay-as-you-go instances when preemptible instance types are available. If you specify 'compensate_with_on_demand', Auto Scaling creates pay-as-you-go instances when preemptible instance types are insufficient. To avoid retaining these pay-as-you-go instances for extended periods, Auto Scaling attempts to replace them with preemptible instances when sufficient preemptible instance types become available. Valid values: true, false.
compensateWithOnDemand Boolean
Specifies whether to automatically create pay-as-you-go instances to meet the requirement on the number of ECS instances when the expected capacity of preemptible instances cannot be provided due to reasons such as cost-related issues and insufficient resources. This parameter is supported only if you set 'multi_az_policy' to COST_OPTIMIZED. Valid values: true, false.
containerGroupId Changes to this property will trigger replacement. String
The ID of the elastic container instance.
dbInstanceIds List<String>
If an RDS instance is specified in the scaling group, the scaling group automatically attaches the Intranet IP addresses of its ECS instances to the RDS access whitelist.

  • The specified RDS instance must be in running status.
  • The specified RDS instance’s whitelist must have room for more IP addresses.
defaultCooldown Number
Default cool-down time (in seconds) of the scaling group. Value range: [0, 86400]. The default value is 300s.
desiredCapacity Number
Expected number of ECS instances in the scaling group. Value range: [min_size, max_size].
groupDeletionProtection Boolean
Specifies whether the scaling group deletion protection is enabled. true or false, Default value: false.
groupType Changes to this property will trigger replacement. String
Resource type within scaling group. Optional values: ECS, ECI. Default to ECS.
healthCheckType String
Resource type within scaling group. Optional values: ECS, ECI, NONE, LOAD_BALANCER. Default to ECS.
healthCheckTypes List<String>
The health check modes of the scaling group. Valid values: ECS, NONE, LOAD_BALANCER.
instanceId Changes to this property will trigger replacement. String
The ID of the instance from which Auto Scaling obtains the required configuration information and uses the information to automatically create a scaling configuration.
launchTemplateId String
Instance launch template ID, scaling group obtains launch configuration from instance launch template, see Launch Template. Creating scaling group from launch template enable group automatically.
launchTemplateOverrides List<Property Map>
The details of the instance types that are specified by using the Extend Instance Type of Launch Template feature. See launch_template_override below for details.
launchTemplateVersion String
The version number of the launch template. Valid values are the version number, Latest, or Default, Default value: Default.
loadbalancerIds List<String>
If a Server Load Balancer instance is specified in the scaling group, the scaling group automatically attaches its ECS instances to the Server Load Balancer instance.

  • The Server Load Balancer instance must be enabled.
  • At least one listener must be configured for each Server Load Balancer and it HealthCheck must be on. Otherwise, creation will fail (it may be useful to add a depends_on argument targeting your alicloud.slb.Listener in order to make sure the listener with its HealthCheck configuration is ready before creating your scaling group).
  • The Server Load Balancer instance attached with VPC-type ECS instances cannot be attached to the scaling group.
  • The default weight of an ECS instance attached to the Server Load Balancer instance is 50.
maxInstanceLifetime Number
The maximum life span of an instance in the scaling group. Unit: seconds.
maxSize Number
Maximum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, max_size can be set to 2000.
minSize Number
Minimum number of ECS instances in the scaling group. Value range: [0, 2000]. NOTE: From version 1.204.1, min_size can be set to 2000.
multiAzPolicy Changes to this property will trigger replacement. String
Multi-AZ scaling group ECS instance expansion and contraction strategy. PRIORITY, COMPOSABLE, BALANCE or COST_OPTIMIZED(Available since v1.54.0).
onDemandBaseCapacity Number
The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.
onDemandPercentageAboveBaseCapacity Number
Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.
protectedInstances List<String>
Set or unset instances within group into protected status.
removalPolicies List<String>
RemovalPolicy is used to select the ECS instances you want to remove from the scaling group when multiple candidates for removal exist. Optional values:

  • OldestInstance: removes the ECS instance that is added to the scaling group at the earliest point in time.
  • NewestInstance: removes the ECS instance that is added to the scaling group at the latest point in time.
  • OldestScalingConfiguration: removes the ECS instance that is created based on the earliest scaling configuration.
  • Default values: Default value of RemovalPolicy.1: OldestScalingConfiguration. Default value of RemovalPolicy.2: OldestInstance.
resourceGroupId String
The ID of the resource group to which you want to add the scaling group.
scalingGroupName String
Name shown for the scaling group, which must contain 2-64 characters (English or Chinese), starting with numbers, English letters or Chinese characters, and can contain numbers, underscores _, hyphens -, and decimal points .. If this parameter is not specified, the default value is ScalingGroupId.
scalingPolicy String
The reclaim mode of the scaling group. Optional values: recycle, release, forceRecycle, forceRelease.
spotAllocationStrategy String
The allocation policy of preemptible instances. You can use this parameter to individually specify the allocation policy for preemptible instances. This parameter takes effect only if you set MultiAZPolicy to COMPOSABLE.
spotInstancePools Number
The number of Spot pools to use to allocate your Spot capacity. The Spot pools is composed of instance types of lowest price.
spotInstanceRemedy Boolean
Whether to replace spot instances with newly created spot/onDemand instance when receive a spot recycling message.
stopInstanceTimeout Number
The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
tags Map<String>
A mapping of tags to assign to the resource.

  • Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
  • Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
vswitchId String
It has been deprecated from version 1.7.1 and new field 'vswitch_ids' replaces it.

Deprecated: Field 'vswitch_id' has been deprecated from provider version 1.7.1, and new field 'vswitch_ids' can replace it.

vswitchIds List<String>
List of virtual switch IDs in which the ecs instances to be launched.

Supporting Types

ScalingGroupAlbServerGroup
, ScalingGroupAlbServerGroupArgs

AlbServerGroupId string
The ID of ALB server group.
Port int
The port number used by an ECS instance after Auto Scaling adds the ECS instance to ALB server group.
Weight int
The weight of the ECS instance as a backend server after Auto Scaling adds the ECS instance to ALB server group.
AlbServerGroupId string
The ID of ALB server group.
Port int
The port number used by an ECS instance after Auto Scaling adds the ECS instance to ALB server group.
Weight int
The weight of the ECS instance as a backend server after Auto Scaling adds the ECS instance to ALB server group.
albServerGroupId String
The ID of ALB server group.
port Integer
The port number used by an ECS instance after Auto Scaling adds the ECS instance to ALB server group.
weight Integer
The weight of the ECS instance as a backend server after Auto Scaling adds the ECS instance to ALB server group.
albServerGroupId string
The ID of ALB server group.
port number
The port number used by an ECS instance after Auto Scaling adds the ECS instance to ALB server group.
weight number
The weight of the ECS instance as a backend server after Auto Scaling adds the ECS instance to ALB server group.
alb_server_group_id str
The ID of ALB server group.
port int
The port number used by an ECS instance after Auto Scaling adds the ECS instance to ALB server group.
weight int
The weight of the ECS instance as a backend server after Auto Scaling adds the ECS instance to ALB server group.
albServerGroupId String
The ID of ALB server group.
port Number
The port number used by an ECS instance after Auto Scaling adds the ECS instance to ALB server group.
weight Number
The weight of the ECS instance as a backend server after Auto Scaling adds the ECS instance to ALB server group.

ScalingGroupLaunchTemplateOverride
, ScalingGroupLaunchTemplateOverrideArgs

InstanceType string
The instance type in launchTemplateOverride.
SpotPriceLimit double

The maximum bid price of instance type in launchTemplateOverride.

NOTE: When detach loadbalancers, instances in group will be remove from loadbalancer's Default Server Group; On the contrary, When attach loadbalancers, instances in group will be added to loadbalancer's Default Server Group.

NOTE: When detach dbInstances, private ip of instances in group will be remove from dbInstance's WhiteList; On the contrary, When attach dbInstances, private ip of instances in group will be added to dbInstance's WhiteList.

NOTE: on_demand_base_capacity,on_demand_percentage_above_base_capacity,spot_instance_pools,spot_instance_remedy are valid only if multi_az_policy is 'COST_OPTIMIZED'.

WeightedCapacity int
The weight of the instance type in launchTemplateOverride.
InstanceType string
The instance type in launchTemplateOverride.
SpotPriceLimit float64

The maximum bid price of instance type in launchTemplateOverride.

NOTE: When detach loadbalancers, instances in group will be remove from loadbalancer's Default Server Group; On the contrary, When attach loadbalancers, instances in group will be added to loadbalancer's Default Server Group.

NOTE: When detach dbInstances, private ip of instances in group will be remove from dbInstance's WhiteList; On the contrary, When attach dbInstances, private ip of instances in group will be added to dbInstance's WhiteList.

NOTE: on_demand_base_capacity,on_demand_percentage_above_base_capacity,spot_instance_pools,spot_instance_remedy are valid only if multi_az_policy is 'COST_OPTIMIZED'.

WeightedCapacity int
The weight of the instance type in launchTemplateOverride.
instanceType String
The instance type in launchTemplateOverride.
spotPriceLimit Double

The maximum bid price of instance type in launchTemplateOverride.

NOTE: When detach loadbalancers, instances in group will be remove from loadbalancer's Default Server Group; On the contrary, When attach loadbalancers, instances in group will be added to loadbalancer's Default Server Group.

NOTE: When detach dbInstances, private ip of instances in group will be remove from dbInstance's WhiteList; On the contrary, When attach dbInstances, private ip of instances in group will be added to dbInstance's WhiteList.

NOTE: on_demand_base_capacity,on_demand_percentage_above_base_capacity,spot_instance_pools,spot_instance_remedy are valid only if multi_az_policy is 'COST_OPTIMIZED'.

weightedCapacity Integer
The weight of the instance type in launchTemplateOverride.
instanceType string
The instance type in launchTemplateOverride.
spotPriceLimit number

The maximum bid price of instance type in launchTemplateOverride.

NOTE: When detach loadbalancers, instances in group will be remove from loadbalancer's Default Server Group; On the contrary, When attach loadbalancers, instances in group will be added to loadbalancer's Default Server Group.

NOTE: When detach dbInstances, private ip of instances in group will be remove from dbInstance's WhiteList; On the contrary, When attach dbInstances, private ip of instances in group will be added to dbInstance's WhiteList.

NOTE: on_demand_base_capacity,on_demand_percentage_above_base_capacity,spot_instance_pools,spot_instance_remedy are valid only if multi_az_policy is 'COST_OPTIMIZED'.

weightedCapacity number
The weight of the instance type in launchTemplateOverride.
instance_type str
The instance type in launchTemplateOverride.
spot_price_limit float

The maximum bid price of instance type in launchTemplateOverride.

NOTE: When detach loadbalancers, instances in group will be remove from loadbalancer's Default Server Group; On the contrary, When attach loadbalancers, instances in group will be added to loadbalancer's Default Server Group.

NOTE: When detach dbInstances, private ip of instances in group will be remove from dbInstance's WhiteList; On the contrary, When attach dbInstances, private ip of instances in group will be added to dbInstance's WhiteList.

NOTE: on_demand_base_capacity,on_demand_percentage_above_base_capacity,spot_instance_pools,spot_instance_remedy are valid only if multi_az_policy is 'COST_OPTIMIZED'.

weighted_capacity int
The weight of the instance type in launchTemplateOverride.
instanceType String
The instance type in launchTemplateOverride.
spotPriceLimit Number

The maximum bid price of instance type in launchTemplateOverride.

NOTE: When detach loadbalancers, instances in group will be remove from loadbalancer's Default Server Group; On the contrary, When attach loadbalancers, instances in group will be added to loadbalancer's Default Server Group.

NOTE: When detach dbInstances, private ip of instances in group will be remove from dbInstance's WhiteList; On the contrary, When attach dbInstances, private ip of instances in group will be added to dbInstance's WhiteList.

NOTE: on_demand_base_capacity,on_demand_percentage_above_base_capacity,spot_instance_pools,spot_instance_remedy are valid only if multi_az_policy is 'COST_OPTIMIZED'.

weightedCapacity Number
The weight of the instance type in launchTemplateOverride.

Import

ESS scaling group can be imported using the id, e.g.

$ pulumi import alicloud:ess/scalingGroup:ScalingGroup example asg-abc123456
Copy

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

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.