-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathdeploy-SSL-certificates-to-SpringBoot-applications.yml
409 lines (382 loc) · 14.1 KB
/
deploy-SSL-certificates-to-SpringBoot-applications.yml
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
ROSTemplateFormatVersion: '2015-09-01'
Description:
zh-cn: 部署SSL证书至Spring Boot应用。
en: Deploy SSL certificates to Spring Boot applications.
Parameters:
SolutionName:
Type: String
Default: 部署SSL证书至SpringBoot应用
CommonName:
Type: String
Default: http-to-https
ZoneId:
Type: String
AssociationProperty: 'ALIYUN::ECS::Instance::ZoneId'
AssociationPropertyMetadata:
AutoSelectFirst: true
Label:
en: Availability Zone
zh-cn: 可用区
InstanceType:
Type: String
AssociationProperty: 'ALIYUN::ECS::Instance::InstanceType'
AssociationPropertyMetadata:
InstanceChargeType: PostPaid
SystemDiskCategory: cloud_essd
ZoneId: ${ZoneId}
Label:
en: Instance Type
zh-cn: 实例规格
Default: ecs.c6.large
InstancePassword:
NoEcho: true
Type: String
Description:
en: >-
Server login password, Length 8-30, must contain three(Capital letters,
lowercase letters, numbers, ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/ Special
symbol in)
zh-cn: >-
服务器登录密码,长度8-30,必须包含三项(大写字母、小写字母、数字、 ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/
中的特殊符号)
Label:
en: Instance Password
zh-cn: 实例密码
ConstraintDescription:
en: >-
Length 8-30, must contain three(Capital letters, lowercase letters,
numbers, ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/ Special symbol in)
zh-cn: '长度8-30,必须包含三项(大写字母、小写字母、数字、 ()`~!@#$%^&*_-+=|{}[]:;''<>,.?/ 中的特殊符号)'
AssociationProperty: 'ALIYUN::ECS::Instance::Password'
Default: null
CertificateId:
AssociationProperty: ALIYUN::CAS::Certificate::CertificateId
Type: String
Label:
en: SSL Certificate Id
zh-cn: SSL证书
Description:
en: If you select a certificate for a wildcard domain name, such as *.example.com, by default the certificate will be deployed to the domain name whose host is recorded as www:http://www.example.com. If www host records have been configured on the DNS, disable the records first. Otherwise, the resource stack fails to be created because the DNS resolution records already exist.
zh-cn: 如果您选择通配符域名的证书,如*.example.com,默认会将证书部署到主机记录为www的域名上,即:http://www.example.com,如果您在DNS上已配置www主机记录,请您先禁用该记录,否则会由于DNS解析记录已存在导致资源栈创建失败。
Resources:
Vpc:
Type: 'ALIYUN::ECS::VPC'
Properties:
CidrBlock: 192.168.0.0/16
VpcName:
Fn::Sub: ${CommonName}-vpc
VSwitch:
Type: 'ALIYUN::ECS::VSwitch'
Properties:
VpcId:
Ref: Vpc
CidrBlock: 192.168.0.0/24
ZoneId:
Ref: ZoneId
VSwitchName:
Fn::Sub: ${CommonName}-vsw
SecurityGroup:
Type: 'ALIYUN::ECS::SecurityGroup'
Properties:
VpcId:
Ref: Vpc
SecurityGroupName:
Fn::Sub: ${CommonName}-sg
SecurityGroupIngress:
- PortRange: 443/443
SourceCidrIp: 0.0.0.0/0
IpProtocol: tcp
- PortRange: 80/80
SourceCidrIp: 0.0.0.0/0
IpProtocol: tcp
EcsInstance:
Type: 'ALIYUN::ECS::InstanceGroup'
Properties:
VpcId:
Ref: Vpc
ZoneId:
Ref: ZoneId
VSwitchId:
Ref: VSwitch
SecurityGroupId:
Ref: SecurityGroup
ImageId: aliyun_3_9_x64_20G_alibase_
InstanceName:
Fn::Sub: ${CommonName}-ecs
InstanceType:
Ref: InstanceType
SystemDiskCategory: cloud_essd
MaxAmount: 1
InternetMaxBandwidthOut: 5
Password:
Ref: InstancePassword
DomainRecord:
Type: 'ALIYUN::DNS::DomainRecord'
Properties:
Type: A
RR:
Fn::Select:
- '0'
- Fn::Split:
- .
- Fn::GetJsonValue:
- DomainName
- Fn::GetAtt:
- DomainName
- Outputs
DomainName:
Fn::Join:
- .
- Fn::Select:
- '1:'
- Fn::Split:
- .
- Fn::GetJsonValue:
- DomainName
- Fn::GetAtt:
- DomainName
- Outputs
Value:
Fn::Select:
- 0
- Fn::GetAtt:
- EcsInstance
- PublicIps
User:
Type: ALIYUN::RAM::User
Properties:
UserName:
Fn::Sub: create_by_document-${ALIYUN::StackId}
PolicyAttachments:
System:
- AliyunYundunCertReadOnlyAccess
AccessKey:
Type: ALIYUN::RAM::AccessKey
Properties:
UserName:
Ref: User
Service:
Type: ALIYUN::FC::Service
Properties:
ServiceName:
Fn::Sub: create_by_document-${ALIYUN::StackId}
Function:
Type: ALIYUN::FC::Function
Properties:
ServiceName:
Fn::GetAtt:
- Service
- ServiceName
FunctionName:
Fn::Sub: create_by_document-${ALIYUN::StackId}
Handler: index.handler
Runtime: python3.9
Code:
SourceCode:
Fn::Sub: |-
#!/usr/bin/env python
# coding=utf-8
import json, time, urllib.request
from aliyunsdkcore.client import AcsClient
from aliyunsdkcore.request import CommonRequest
from aliyunsdkcore.auth.credentials import AccessKeyCredential
def handler(event, context):
event = json.loads(event)
creds = context.credentials
r_ps = event['ResourceProperties']
credentials = AccessKeyCredential("${AccessKey.AccessKeyId}", "${AccessKey.AccessKeySecret}")
client = AcsClient(region_id=context.region, credential=credentials)
if event['RequestType'] != 'Delete':
request = CommonRequest()
request.set_accept_format('json')
request.set_domain('cas.aliyuncs.com')
request.set_method('POST')
request.set_protocol_type('https') # https | http
request.set_version('2020-04-07')
request.set_action_name('GetUserCertificateDetail')
request.add_query_param('CertId', "${CertificateId}")
response = client.do_action(request)
response = json.loads(response)
result = {
'RequestId': event['RequestId'],
'LogicalResourceId': event['LogicalResourceId'],
'StackId': event['StackId'],
'Status': 'SUCCESS',
'PhysicalResourceId': 'MyCustomResourceId',
'Data': {}
}
if event['RequestType'] != 'Delete':
domain_name = response.get('Common')
if domain_name:
if domain_name.startswith('*.') or domain_name.startswith('www.'):
domain_list = domain_name.split('.')
result['Data'] = {
"DomainName": 'www.' + '.'.join(domain_list[1:]),
"DomainPrefix": "www."
}
else:
result['Data'] = {
"DomainName": '@.' + domain_name,
"DomainPrefix": ""
}
headers = {'Content-type': 'application/json', 'Accept': 'application/json','Date': time.strftime('%a, %d %b %Y %X GMT', time.gmtime()), 'User-Agent': 'MyCustomUserAgent'}
req = urllib.request.Request(event['ResponseURL'], data=json.dumps(result).encode('utf-8'), headers=headers)
urllib.request.urlopen(req)
DomainName:
Type: Custom::DomainName
Properties:
ServiceToken:
Fn::GetAtt:
- Function
- ARN
Timeout: 60
SSLConfig:
Type: 'ALIYUN::ECS::RunCommand'
Properties:
InstanceIds:
Fn::GetAtt:
- EcsInstance
- InstanceIds
Type: RunShellScript
Sync: true
Timeout: 3600
CommandContent:
Fn::Sub:
- |
#!/bin/bash
# 环境变量配置
export PATH=/usr/local/bin:$PATH
function log_info() {
printf "%s [INFO] %s\n" "$(date '+%Y-%m-%d %H:%M:%S')" "$1"
}
function log_error() {
printf "%s [ERROR] %s\n" "$(date '+%Y-%m-%d %H:%M:%S')" "$1"
}
function log_fatal() {
printf "\n========================================================================\n"
printf "%s [FATAL] %s\n" "$(date '+%Y-%m-%d %H:%M:%S')" "$2"
printf "\n========================================================================\n"
exit $1
}
function set_ros_flag() {
log_info "set ros flag to .ros.provision"
echo "$(date '+%Y-%m-%d %H:%M:%S') [${ALIYUN::StackId}] [${SolutionName}]" >> .ros.provision
}
cat << EOF > /root/get_user_certificate.py
#!/usr/bin/env python
#coding=utf-8
import os
import json
from aliyunsdkcore.client import AcsClient
from aliyunsdkcore.request import CommonRequest
from aliyunsdkcore.auth.credentials import AccessKeyCredential
from aliyunsdkcore.auth.credentials import StsTokenCredential
credentials = AccessKeyCredential("${AccessKey.AccessKeyId}", "${AccessKey.AccessKeySecret}")
client = AcsClient(region_id='${ALIYUN::Region}', credential=credentials)
request = CommonRequest()
request.set_accept_format('json')
request.set_domain('cas.aliyuncs.com')
request.set_method('POST')
request.set_protocol_type('https') # https | http
request.set_version('2020-04-07')
request.set_action_name('GetUserCertificateDetail')
request.add_query_param('CertId', ${CertificateId})
response = client.do_action(request)
response = json.loads(response)
cert = response.get('Cert')
if cert:
with open('/root/key/public_key.pem', 'w') as f:
f.write(cert)
key = response.get('Key')
if key:
with open('/root/key/private_key.key', 'w') as f:
f.write(key)
EOF
function download_and_check_cert_file() {
log_info "down load and check zip file."
sudo yum update -y
sudo yum install -y java-21-alibaba-dragonwell-devel
sudo yum install -y python3 python3-pip
sudo pip3 install aliyun-python-sdk-core
mkdir -p /root/key/ && cd /root/key/
python3 /root/get_user_certificate.py
domain_name=$(echo "${DomainName}" | sed 's/^@\.//')
openssl pkcs12 -export -out "$domain_name.pfx" -inkey private_key.key -in public_key.pem -passout pass:$Password
keytool -importkeystore -srckeystore $domain_name.pfx -srcstoretype PKCS12 -destkeystore $domain_name.jks -deststoretype JKS -deststorepass $Password -srcstorepass $Password
JKS_FILE=`ls *.jks`
if [ -z "$JKS_FILE" ]; then
log_fatal 5 "there are no files ending in .jks."
fi
}
set_ros_flag
domain_name=$(echo "${DomainName}" | sed 's/^@\.//')
Password="JksPassword"
JksFilePath="/root/key/$domain_name.jks"
download_and_check_cert_file
cat << EOF >> ~/.bash_profile
export SPRING_SERVER_SSL_KEY_STORE_PASSWORD=$Password
export SPRING_SERVER_SSL_KEY_STORE=$JksFilePath
EOF
source ~/.bash_profile
curl -fsSL https://static-aliyun-doc.oss-cn-hangzhou.aliyuncs.com/install-script/install-ssl-certificate/install-ssl-for-springboot.sh | bash
- DomainName:
Fn::GetJsonValue:
- DomainName
- Fn::GetAtt:
- DomainName
- Outputs
Outputs:
WebDomainForHttps:
Description:
zh-cn: 安全的 Web 访问地址。
en: Secure web access address.
Value:
Fn::Sub:
- 'https://${DomainPrefix}${DomainName}'
- DomainName:
Fn::Join:
- .
- Fn::Select:
- '1:'
- Fn::Split:
- .
- Fn::GetJsonValue:
- DomainName
- Fn::GetAtt:
- DomainName
- Outputs
DomainPrefix:
Fn::GetJsonValue:
- DomainPrefix
- Fn::GetAtt:
- DomainName
- Outputs
EcsLoginAddress:
Description:
zh-cn: ECS登录地址。
en: Ecs login address.
Value:
'Fn::Sub':
- >-
https://ecs-workbench.aliyun.com/?from=EcsConsole&instanceType=ecs®ionId=${Region}&instanceId=${InstanceId}
- InstanceId:
'Fn::Select':
- 0
- 'Fn::GetAtt':
- EcsInstance
- InstanceIds
Region:
Ref: 'ALIYUN::Region'
Metadata:
'ALIYUN::ROS::Interface':
ParameterGroups:
- Parameters:
- ZoneId
- InstanceType
- InstancePassword
- CertificateId
TemplateTags:
- acs:technical-solution:internet-application-development:部署SSL证书至SpringBoot应用-tech_solu_207
Hidden:
- CommonName
- SolutionName