-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS-ECS-ApproveBulkyRunCommand.json
242 lines (242 loc) · 6.33 KB
/
ACS-ECS-ApproveBulkyRunCommand.json
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"en": "Approve Bulky RunCommand",
"zh-cn": "审批后批量执行命令",
"name-en": "ACS-ECS-ApproveBulkyRunCommand",
"name-zh-cn": "审批后批量执行命令",
"categories": [
"instance_manage"
]
},
"Parameters": {
"regionId": {
"Type": "String",
"Label": {
"en": "RegionId",
"zh-cn": "地域ID"
},
"AssociationProperty": "RegionId",
"Default": "{{ ACS::RegionId }}"
},
"targets": {
"Label": {
"en": "TargetInstance",
"zh-cn": "目标实例"
},
"Type": "Json",
"AssociationProperty": "Targets",
"AssociationPropertyMetadata": {
"ResourceType": "ALIYUN::ECS::Instance",
"RegionId": "regionId"
}
},
"commandType": {
"Label": {
"en": "CommandType",
"zh-cn": "云助手命令类型"
},
"Type": "String",
"AllowedValues": [
"RunBatScript",
"RunPowerShellScript",
"RunShellScript"
],
"Default": "RunShellScript"
},
"commandContent": {
"Label": {
"en": "CommandContent",
"zh-cn": "在ECS实例中执行的云助手命令"
},
"Type": "String",
"AssociationProperty": "Code"
},
"rateControl": {
"Label": {
"en": "RateControl",
"zh-cn": "任务执行的并发比率"
},
"Type": "Json",
"AssociationProperty": "RateControl",
"Default": {
"Mode": "Concurrency",
"MaxErrors": 0,
"Concurrency": 10
}
},
"webHookUrl": {
"Label": {
"en": "WebHookUrl",
"zh-cn": "钉钉群助手的webhook地址"
},
"Description": {
"en": "e.g.https://oapi.dingtalk.com/robot/send?access_token=1234zxcvaksdq31414,acquiring DingTalk webhook please refer to second appendix in https://help.aliyun.com/document_detail/144679.html.",
"zh-cn": "形如https://oapi.dingtalk.com/robot/send?access_token=1234zxcvaksdq31414,具体钉钉WebHook获取请参考https://help.aliyun.com/document_detail/144679.html#h2--2-webhook-5。"
},
"Type": "String"
},
"atMobiles": {
"Label": {
"en": "AtMobiles",
"zh-cn": "审批通知中被@的群成员的钉钉手机号"
},
"Type": "List"
},
"atAll": {
"Label": {
"en": "AtAll",
"zh-cn": "当群助手向钉钉群中发送审批通知时是否@所有人"
},
"Type": "String",
"Default": "false"
},
"approvers": {
"Label": {
"en": "Approvers",
"zh-cn": "可以审批任务的用户"
},
"Description": {
"en": "The name to fill is the front part of @ in the RAM user name,if RAM user is user001@companyAlias.onaliyun.com, then fill user001 in list.",
"zh-cn": "用户名是RAM子用户名称中@前面的部分,比如RAM子用户为user001@companyAlias.onaliyun.com,那么列表中填写user001即可。"
},
"Type": "List",
"AssociationProperty": "ALIYUN::RAM::User"
},
"minRequiredApprovals": {
"Label": {
"en": "MinRequiredApprovals",
"zh-cn": "最低需要通过审批的数量"
},
"Type": "Number",
"Default": 1
},
"OOSAssumeRole": {
"Label": {
"en": "OOSAssumeRole",
"zh-cn": "OOS扮演的RAM角色"
},
"Type": "String",
"Default": ""
}
},
"RamRole": "{{ OOSAssumeRole }}",
"Tasks": [
{
"Name": "approveBulkyRuncommand",
"Action": "ACS::Approve",
"Description": {
"en": "Approve operation task runcommand",
"zh-cn": "审批运维任务"
},
"Properties": {
"Approvers": "{{approvers}}",
"MinRequiredApprovals": "{{minRequiredApprovals}}",
"NotifyType": "WebHook",
"WebHook": {
"URI": "{{webhookUrl}}",
"Headers": {
"Content-Type": "application/json"
},
"Content": {
"msgtype": "text",
"text": {
"content": "Notify: Please approve the task execution to create ECS instance sent by {{ACS::RegionId}} oos {{ACS::ExecutionId}} ."
},
"at": {
"atMobiles": "{{atMobiles}}",
"isAtAll": "{{atAll}}"
}
}
}
}
},
{
"Name": "bulkyRunCommand",
"Action": "ACS::Template",
"Description": {
"en": "Execute cloud assistant command",
"zh-cn": "执行云助手命令"
},
"Properties": {
"TemplateName": "ACS-ECS-BulkyRunCommand",
"Parameters": {
"regionId": "{{ regionId }}",
"commandContent": "{{ commandContent }}",
"commandType": "{{ commandType }}",
"targets": "{{ targets }}",
"rateControl": "{{ rateControl }}"
}
},
"Outputs": {
"commandOutputs": {
"Type": "List",
"ValueSelector": "commandOutputs"
}
}
}
],
"Outputs": {
"commandOutputs": {
"Type": "List",
"Value": "{{ bulkyRunCommand.commandOutputs }}"
}
},
"Metadata": {
"ALIYUN::OOS::Interface": {
"ParameterGroups": [
{
"Parameters": [
"webHookUrl",
"atMobiles",
"atAll",
"approvers",
"minRequiredApprovals"
],
"Label": {
"default": {
"zh-cn": "配置审批",
"en": "Configure Approval"
}
}
},
{
"Parameters": [
"commandType",
"commandContent"
],
"Label": {
"default": {
"zh-cn": "执行命令选型",
"en": "Configure Command"
}
}
},
{
"Parameters": [
"regionId",
"targets"
],
"Label": {
"default": {
"zh-cn": "选择实例",
"en": "Select Instances"
}
}
},
{
"Parameters": [
"rateControl",
"OOSAssumeRole"
],
"Label": {
"default": {
"zh-cn": "高级选项",
"en": "Control Options"
}
}
}
]
}
}
}