模板名称
ACS-ECS-BulkyDeleteInstances 批量删除ECS实例
模板描述
批量删除ECS按量付费实例,适用于需要同时管理和删除多台按量付费ECS实例的场景,例如资源释放和成本优化。在配置过程中,用户需要提供以下必填参数信息:地域ID(regionId):用于指定需要删除实例的地域,目标实例(targets):用于定义具体需要操作的ECS实例。用户还可以选择是否强制删除正在运行的实例(force)。模板在执行后会返回删除的实例ID列表,方便用户验证实例删除的状态。
模板类型
自动化
所有者
Alibaba Cloud
输入参数
参数名称 | 描述 | 类型 | 是否必填 | 默认值 | 约束 |
targets | 目标实例 | Json | 是 | ||
regionId | 地域ID | String | 否 | {{ ACS::RegionId }} | |
force | 是否强制释放正在运行的实例 | Boolean | 否 | False | |
rateControl | 任务执行的并发比率 | Json | 否 | {‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10} | |
OOSAssumeRole | OOS扮演的RAM角色 | String | 否 | “” |
输出参数
无
执行此模板需要的权限策略
{
"Version": "1",
"Statement": [
{
"Action": [
"ecs:DeleteInstance",
"ecs:DescribeInstances"
],
"Resource": "*",
"Effect": "Allow"
}
]
}
详情
ACS-ECS-BulkyDeleteInstances详情
模板内容
FormatVersion: OOS-2019-06-01
Description:
en: 'Bulky delete ECS postpaid instances, applicable to scenarios that require managing and deleting multiple pay-as-you-go ECS instances simultaneously, such as resource release and cost optimization. During configuration, users need to provide the following required parameter information: Region ID (regionId), which specifies the region of the ECS instances to be deleted, and Target Instances (targets), which defines the specific ECS instances to be operated on. Users can also choose whether to force delete running instances (force). Upon execution, the template will return a list of the deleted instance IDs, enabling users to verify the status of the instance deletions.'
zh-cn: 批量删除ECS按量付费实例,适用于需要同时管理和删除多台按量付费ECS实例的场景,例如资源释放和成本优化。在配置过程中,用户需要提供以下必填参数信息:地域ID(regionId):用于指定需要删除实例的地域,目标实例(targets):用于定义具体需要操作的ECS实例。用户还可以选择是否强制删除正在运行的实例(force)。模板在执行后会返回删除的实例ID列表,方便用户验证实例删除的状态。
name-en: ACS-ECS-BulkyDeleteInstances
name-zh-cn: 批量删除ECS实例
categories:
- instance_manage
Parameters:
regionId:
Type: String
Label:
en: RegionId
zh-cn: 地域ID
AssociationProperty: RegionId
Default: '{{ ACS::RegionId }}'
targets:
Type: Json
Label:
en: TargetInstance
zh-cn: 目标实例
AssociationProperty: Targets
AssociationPropertyMetadata:
ResourceType: ALIYUN::ECS::Instance
RegionId: regionId
force:
Label:
en: Force
zh-cn: 是否强制释放正在运行的实例
Type: Boolean
Default: false
rateControl:
Label:
en: RateControl
zh-cn: 任务执行的并发比率
Type: Json
AssociationProperty: RateControl
Default:
Mode: Concurrency
MaxErrors: 0
Concurrency: 10
OOSAssumeRole:
Label:
en: OOSAssumeRole
zh-cn: OOS扮演的RAM角色
Type: String
Default: ''
RamRole: '{{ OOSAssumeRole }}'
Tasks:
- Name: getInstance
Description:
en: Views the ECS instances
zh-cn: 获取ECS实例
Action: ACS::SelectTargets
Properties:
ResourceType: ALIYUN::ECS::Instance
RegionId: '{{ regionId }}'
Filters:
- '{{ targets }}'
Outputs:
instanceIds:
Type: List
ValueSelector: Instances.Instance[].InstanceId
- Name: deleteInstance
Action: ACS::ExecuteAPI
Description:
en: Deletes ECS instance with the specified instance ID
zh-cn: 通过指定实例ID删除实例
Properties:
Service: ECS
API: DeleteInstance
Parameters:
RegionId: '{{ regionId }}'
InstanceId: '{{ ACS::TaskLoopItem }}'
Force: '{{ force }}'
Loop:
RateControl: '{{ rateControl }}'
Items: '{{ getInstance.instanceIds }}'
Metadata:
ALIYUN::OOS::Interface:
ParameterGroups:
- Parameters:
- force
Label:
default:
zh-cn: 配置参数
en: Configure Parameters
- Parameters:
- regionId
- targets
Label:
default:
zh-cn: 选择实例
en: Select Instances
- Parameters:
- rateControl
- OOSAssumeRole
Label:
default:
zh-cn: 高级选项
en: Control Options