全部產品
Search
文件中心

CloudOps Orchestration Service:ACS-ECS-BulkyAllocateAndAssociateEipAddress

更新時間:Sep 06, 2024

模板名稱

ACS-ECS-BulkyAllocateAndAssociateEipAddress 大量建立並綁定Elastic IP Address(EIP)到同地區的雲產品執行個體上

立即執行

模板描述

大量建立並綁定Elastic IP Address(EIP)到同地區的雲產品執行個體上

模板類型

自動化

所有者

Alibaba Cloud

輸入參數

參數名稱

描述

類型

是否必填

預設值

約束

instanceIds

要綁定EIP的執行個體ID列表

List

regionId

地區ID

String

{{ ACS::RegionId }}

instanceType

要綁定EIP的執行個體的類型

String

NetworkInterface

internetChargeType

EIP的計量方式

String

PayByBandwidth

bandwidth

EIP的頻寬峰值

Number

5

rateControl

任務執行的並發比率

Json

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

OOSAssumeRole

OOS扮演的RAM角色

String

“”

輸出參數

執行此模板需要的權限原則

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "ecs:AllocateEipAddress",
                "ecs:DescribeEipAddresses",
                "ecs:DescribeNetworkInterfaces"
            ],
            "Resource": "*",
            "Effect": "Allow"
        },
        {
            "Action": [
                "vpc:AssociateEipAddress"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

詳情

ACS-ECS-BulkyAllocateAndAssociateEipAddress詳情

模板內容

FormatVersion: OOS-2019-06-01
Description:
  en: Bulky add EIPs to common bandwidth package
  zh-cn: 大量建立並綁定Elastic IP Address(EIP)到同地區的雲產品執行個體上
  name-en: ACS-ECS-BulkyAllocateAndAssociateEipAddress
  name-zh-cn: 大量建立並綁定Elastic IP Address(EIP)到同地區的雲產品執行個體上
  categories:
    - instance_manage
Parameters:
  regionId:
    Type: String
    Label:
      en: RegionId
      zh-cn: 地區ID
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  instanceIds:
    Label:
      en: InstanceIds
      zh-cn: 要綁定EIP的執行個體ID列表
    Description:
      en: The ID list of the instance to be associated with the Elastic IP address
      zh-cn: 要綁定EIP的執行個體ID列表
    AssociationProperty: ALIYUN::ECS::Instance::InstanceId
    AssociationPropertyMetadata:
      RegionId: regionId
    Type: List
  instanceType:
    Label:
      en: InstanceType
      zh-cn: 要綁定EIP的執行個體的類型
    Description:
      en: The type of the cloud product instance to associate
      zh-cn: 要綁定EIP的執行個體的類型
    Type: String
    AllowedValues:
      - Nat
      - SlbInstance
      - EcsInstance
      - NetworkInterface
      - HaVip
    Default: NetworkInterface
  internetChargeType:
    Label:
      en: InternetChargeType
      zh-cn: EIP的計量方式
    Description:
      en: EIP measurement method
      zh-cn: EIP的計量方式(PayByBandwidth:按頻寬計費,PayByTraffic:按流量計費)
    Type: String
    AllowedValues:
      - PayByBandwidth
      - PayByTraffic
    Default: PayByBandwidth
  bandwidth:
    Label:
      en: Bandwidth
      zh-cn: EIP的頻寬峰值
    Description:
      en: 'Peak bandwidth of eip, unit: Mbps'
      zh-cn: EIP的頻寬峰值(Mbps)
    Type: Number
    Default: 5
  rateControl:
    Label:
      en: RateControl
      zh-cn: 任務執行的並發比率
    Type: Json
    AssociationProperty: RateControl
    Default:
      Mode: Concurrency
      MaxErrors: 0
      Concurrency: 15
  OOSAssumeRole:
    Label:
      en: OOSAssumeRole
      zh-cn: OOS扮演的RAM角色
    Type: String
    Default: ''
RamRole: '{{ OOSAssumeRole }}'
Tasks:
  - Name: associateEipAddressToENI
    Action: ACS::ECS::AllocateAndAssociateEipAddress
    Description:
      en: Associate Eip address to instance
      zh-cn: 將Elastic IP Address(EIP)綁定到雲產品執行個體上
    Properties:
      regionId: '{{ regionId }}'
      instanceId: '{{ ACS::TaskLoopItem }}'
      instanceType: '{{ instanceType }}'
      internetChargeType: '{{ internetChargeType }}'
      bandwidth: '{{ bandwidth }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ instanceIds }}'
Metadata:
  ALIYUN::OOS::Interface:
    ParameterGroups:
      - Parameters:
          - regionId
          - instanceIds
          - instanceType
          - internetChargeType
          - bandwidth
        Label:
          default:
            zh-cn: 配置參數
            en: Configure Parameters
      - Parameters:
          - rateControl
          - OOSAssumeRole
        Label:
          default:
            zh-cn: 進階選項
            en: Control Options