-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathACS-RDS-BulkyModifyDBInstanceDeletionProtection.json
More file actions
103 lines (103 loc) · 2.41 KB
/
ACS-RDS-BulkyModifyDBInstanceDeletionProtection.json
File metadata and controls
103 lines (103 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"en": "Bulky enable deletion protection for instances",
"zh-cn": "批量开启RDS实例保护",
"name-en": "ACS-RDS-BulkyModifyDBInstanceDeletionProtection",
"name-zh-cn": "批量开启RDS实例保护",
"categories": [
"security"
]
},
"Parameters": {
"regionId": {
"Type": "String",
"Label": {
"en": "RegionId",
"zh-cn": "地域ID"
},
"AssociationProperty": "RegionId",
"Default": "{{ ACS::RegionId }}"
},
"instanceIds": {
"Label": {
"en": "InstanceIds",
"zh-cn": "RDS实例Id列表"
},
"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"
}
},
"RamRole": "{{ OOSAssumeRole }}",
"Tasks": [
{
"Name": "enableDBInstanceDeletionProtection",
"Action": "ACS::ExecuteApi",
"Description": "{\"en\":\"Enables deletion protection for rds instance\",\"zh-cn\":\"开启实例释放保护\"}",
"Properties": {
"Service": "RDS",
"API": "ModifyDBInstanceDeletionProtection",
"Parameters": {
"DBInstanceId": "{{ ACS::TaskLoopItem }}",
"DeletionProtection": true
}
},
"Loop": {
"Items": "{{ instanceIds }}",
"RateControl": "{{ rateControl }}"
},
"Outputs": {},
"OnError": "ACS::END",
"OnSuccess": "ACS::NEXT"
}
],
"Metadata": {
"ALIYUN::OOS::Interface": {
"ParameterGroups": [
{
"Parameters": [
"regionId",
"instanceIds"
],
"Label": {
"default": {
"zh-cn": "选择实例",
"en": "Select RDS Instances"
}
}
},
{
"Parameters": [
"rateControl",
"OOSAssumeRole"
],
"Label": {
"default": {
"zh-cn": "高级选项",
"en": "Control Options"
}
}
}
]
}
}
}