文档

ACS-ECS-BulkyAllocateAndAssociateEipAddress

更新时间:

模板名称

ACS-ECS-BulkyAllocateAndAssociateEipAddress 批量创建并绑定弹性公网IP(EIP)到同地域的云产品实例上

立即执行

模板描述

批量创建并绑定弹性公网IP(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: 批量创建并绑定弹性公网IP(EIP)到同地域的云产品实例上
  name-en: ACS-ECS-BulkyAllocateAndAssociateEipAddress
  name-zh-cn: 批量创建并绑定弹性公网IP(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: 将弹性公网IP(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