-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS::ECS::DetachKeyPairOnline.json
160 lines (160 loc) · 3.97 KB
/
ACS::ECS::DetachKeyPairOnline.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
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"name-en": "ACS::ECS::DetachKeyPairOnline",
"name-zh-cn": "在线解绑密钥对",
"en": "Detach key pair to Linux instance without reboot",
"zh-cn": "在线为Linux实例解绑密钥对,无需重启"
},
"Parameters": {
"regionId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::RegionId",
"Label": {
"en": "RegionId",
"zh-cn": "地域ID"
},
"Default": "{{ ACS::RegionId }}"
},
"instanceId": {
"Type": "String",
"AssociationProperty": "ALIYUN::ECS::Instance::InstanceId",
"Label": {
"en": "ECS Instance ID",
"zh-cn": "ECS实例ID"
}
}
},
"Tasks": [
{
"Name": "queryInstance",
"Action": "ACS::ExecuteApi",
"Description": {
"en": "Queries ECS instance OS type",
"zh-cn": "获取实例操作系统类型"
},
"Properties": {
"Service": "ECS",
"API": "DescribeInstances",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceIds": [
"{{ instanceId }}"
]
}
},
"Outputs": {
"keyPairName": {
"Type": "String",
"ValueSelector": "Instances.Instance[].KeyPairName"
},
"OSType": {
"Type": "String",
"ValueSelector": "Instances.Instance[].OSType"
}
}
},
{
"Name": "whetherInstanceIsStopped",
"Action": "ACS::Choice",
"Description": {
"en": "Choose next task by instance status",
"zh-cn": "根据实例状态选择任务"
},
"Properties": {
"DefaultTask": "getKeyPairPublicKey",
"Choices": [
{
"When": {
"Fn::Equals": [
null,
"{{ queryInstance.keyPairName }}"
]
},
"NextTask": "ACS::END"
},
{
"When": {
"Fn::Equals": [
"windows",
"{{ queryInstance.OSType }}"
]
},
"NextTask": "ACS::END"
}
]
}
},
{
"Name": "getKeyPairPublicKey",
"Action": "ACS::ExecuteApi",
"Description": {
"en": "Get Key Pair Public Key",
"zh-cn": "获取密钥对Public Key"
},
"Properties": {
"Service": "ecs",
"API": "DescribeKeyPairs",
"Parameters": {
"RegionId": "{{ regionId }}",
"KeyPairName": "{{ queryInstance.keyPairName }}",
"IncludePublicKey": true
}
},
"Outputs": {
"publicKey": {
"Type": "String",
"ValueSelector": ".KeyPairs.KeyPair[].PublicKey"
}
}
},
{
"Name": "removeSshPublicKey",
"Action": "ACS::ECS::InvokeCommand",
"Description": {
"en": "Remove ssh public key",
"zh-cn": "移除 ssh public key"
},
"Properties": {
"regionId": "{{ regionId }}",
"instanceId": "{{ instanceId }}",
"commandId": "ACS-ECS-RemoveSshPublicKey-for-linux.sh",
"parameters": {
"user": "root",
"ssh_pub_key": "{{ getKeyPairPublicKey.publicKey }}"
}
},
"Outputs": {
"commandOutput": {
"Type": "String",
"ValueSelector": "invocationOutput"
}
}
},
{
"Name": "detachKeyPair",
"Action": "ACS::ExecuteApi",
"Description": {
"en": "Detach key pair",
"zh-cn": "解绑密钥对"
},
"Properties": {
"Service": "ecs",
"API": "DetachKeyPair",
"Parameters": {
"RegionId": "{{ regionId }}",
"KeyPairName": "{{ queryInstance.keyPairName }}",
"InstanceIds": [
"{{ instanceId }}"
]
}
}
}
],
"Outputs": {
"commandOutput": {
"Type": "String",
"Value": "{{ removeSshPublicKey.commandOutput }}"
}
}
}