全部產品
Search
文件中心

CloudOps Orchestration Service:ACS-WAF-BulkyModifyProtectionModuleStatus

更新時間:Sep 05, 2024

模板名稱

ACS-WAF-BulkyModifyProtectionModuleStatus 開啟WAF防護功能模組

立即執行

模板描述

開啟WAF防護功能模組

模板類型

自動化

所有者

Alibaba Cloud

輸入參數

參數名稱

描述

類型

是否必填

預設值

約束

domains

要操作的網站網域名稱

List

instanceId

要操作的WAF執行個體的ID

String

defenseType

要操作的WAF防護功能模組

String

regionId

地區ID

String

{{ ACS::RegionId }}

rateControl

任務執行的並發比率

Json

{'Mode': 'Concurrency', 'MaxErrors': 0, 'Concurrency': 10}

OOSAssumeRole

OOS扮演的RAM角色

String

""

輸出參數

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

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "waf-openapi:ModifyProtectionModuleStatus"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

詳情

ACS-WAF-BulkyModifyProtectionModuleStatus詳情

模板內容

FormatVersion: OOS-2019-06-01
Description:
  en: Modify protection module status
  zh-cn: 開啟WAF防護功能模組
  name-en: ACS-WAF-BulkyModifyProtectionModuleStatus
  name-zh-cn: 開啟WAF防護功能模組
  categories:
    - security
Parameters:
  regionId:
    Type: String
    Label:
      en: RegionId
      zh-cn: 地區ID
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  domains:
    Type: List
    Label:
      en: Domains
      zh-cn: 要操作的網站網域名稱
  instanceId:
    Label:
      en: InstanceId
      zh-cn: 要操作的WAF執行個體的ID
    Type: String
  defenseType:
    Label:
      en: DefenseType
      zh-cn: 要操作的WAF防護功能模組
    Type: String
    AllowedValues:
      - waf
      - ac_cc
      - tamperproof
  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: modifyProtectionModuleStatus
    Action: ACS::ExecuteAPI
    Description:
      en: Modify protection module status
      zh-cn: 開啟WAF防護功能模組-規則防護引擎
    Properties:
      Service: WAF-OPENAPI
      API: ModifyProtectionModuleStatus
      Parameters:
        RegionId: '{{ regionId }}'
        DefenseType: '{{ defenseType }}'
        Domain: '{{ ACS::TaskLoopItem }}'
        InstanceId: '{{ instanceId }}'
        ModuleStatus: 1
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ domains }}'