全部产品
Search
文档中心

系统运维管理:ACS-ECS-BulkyReleasePublicIpAddress

更新时间:Sep 05, 2024

模板名称

ACS-ECS-BulkyReleasePublicIpAddress 批量释放公网Ip

立即执行

模板描述

批量释放公网Ip

模板类型

自动化

所有者

Alibaba Cloud

输入参数

参数名称

描述

类型

是否必填

默认值

约束

publicIpAddress

实例公网IP地址

List

regionId

地域ID

String

{{ ACS::RegionId }}

rateControl

任务执行的并发比率

Json

{‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10}

OOSAssumeRole

OOS扮演的RAM角色

String

“”

输出参数

执行此模板需要的权限策略

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "ecs:ReleasePublicIpAddress"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

详情

ACS-ECS-BulkyReleasePublicIpAddress详情

模板内容

FormatVersion: OOS-2019-06-01
Description:
  name-en: ACS-ECS-BulkyReleasePublicIpAddress
  name-zh-cn: 批量释放公网Ip
  en: Bulky release the public ip address
  zh-cn: 批量释放公网Ip
Parameters:
  regionId:
    Type: String
    Label:
      en: RegionId
      zh-cn: 地域ID
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  publicIpAddress:
    Label:
      en: PublicIpAddress
      zh-cn: 实例公网IP地址
    Type: List
  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: releasePublicIpAddress
    Action: ACS::ExecuteAPI
    Description:
      en: Release the public ip address
      zh-cn: 释放公网Ip
    Properties:
      Service: ECS
      API: ReleasePublicIpAddress
      Parameters:
        RegionId: '{{ regionId }}'
        PublicIpAddress: '{{ ACS::TaskLoopItem }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ publicIpAddress }}'