-
Notifications
You must be signed in to change notification settings - Fork 35
/
listener.yml
277 lines (277 loc) · 6.41 KB
/
listener.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
ROSTemplateFormatVersion: '2015-09-01'
Description:
zh-cn: 该模板部署了SLB负载均衡器,包括监听器、证书、域名扩展、后端服务器组及规则,同时配置了ECS实例,并支持负载均衡器克隆与自定义策略。
en: This template deploys an SLB (Server Load Balancer) with components including
listeners, certificates, domain name extensions, backend server groups, and associated
rules. It also provisions ECS (Elastic Compute Service) instances and facilitates
the cloning of load balancers along with support for custom policies.
Parameters:
VpcId:
Type: String
Description: VPC Id.
VSwitchId:
Type: String
Description: VSW Id.
SecurityGroupId:
Type: String
Description: Security Group Id.
ImageId:
Type: String
Label: ECS Image Id
Default: centos_7
InstanceType:
Type: String
Label: ECS Instance Type
Default: ecs.c5.large
SystemDiskCategory:
Type: String
Description: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd.Old
instances will not be changed.
Default: cloud_essd
LoginPassword:
Type: String
Description: ECS Login Password
Default: Admin123
MinLength: 8
MaxLength: 41
NoEcho: true
LoadBalancerName:
Type: String
Default: mytest
BackendServersPolicy:
Type: String
Default: empty
AllowedValues:
- clone
- empty
- append
- replace
ListenerPort:
Type: Number
Default: 80
VServerGroupName:
Type: String
Default: mytest
MasterZoneId:
Type: String
AssociationProperty: ALIYUN::ECS::Instance:ZoneId
LoadBalancerSpec:
Type: String
Default: slb.s1.small
Certificate:
Type: String
PrivateKey:
Type: String
AliCloudCertificateId:
Type: String
AliCloudCertificateName:
Type: String
Domain:
Type: String
Resources:
ECS:
Type: ALIYUN::ECS::Instance
Properties:
VpcId:
Ref: VpcId
VSwitchId:
Ref: VSwitchId
SecurityGroupId:
Ref: SecurityGroupId
ImageId:
Ref: ImageId
IoOptimized: optimized
AllocatePublicIP: true
InstanceType:
Ref: InstanceType
SystemDiskCategory:
Ref: SystemDiskCategory
Password:
Ref: LoginPassword
LoadBalance:
Type: ALIYUN::SLB::LoadBalancer
Properties:
PayType: PayOnDemand
AddressType: internet
LoadBalancerSpec:
Ref: LoadBalancerSpec
MasterZoneId:
Ref: MasterZoneId
LoadBalancerName:
Ref: LoadBalancerName
SLBCertificate:
Type: ALIYUN::SLB::Certificate
Properties:
Certificate:
Ref: Certificate
PrivateKey:
Ref: PrivateKey
AliCloudCertificateId:
Ref: AliCloudCertificateId
AliCloudCertificateName:
Ref: AliCloudCertificateName
CertificateType: Server
VServerGroup:
Type: ALIYUN::SLB::VServerGroup
Properties:
VServerGroupName:
Ref: VServerGroupName
BackendServers:
- ServerId:
Ref: ECS
Port: 80
Weight: 100
LoadBalancerId:
Ref: LoadBalance
DependsOn:
- ECS
- LoadBalance
Listener:
Type: ALIYUN::SLB::Listener
Properties:
BackendServerPort: 8080
Bandwidth: 50
ListenerPort:
Ref: ListenerPort
LoadBalancerId:
Ref: LoadBalance
Protocol: https
Scheduler: wrr
ServerCertificateId:
Fn::GetAtt:
- SLBCertificate
- CertificateId
VServerGroupId:
Ref: VServerGroup
DependsOn:
- LoadBalance
- SLBCertificate
CloneLoadBalancer:
Type: ALIYUN::SLB::LoadBalancerClone
Properties:
SourceLoadBalancerId:
Ref: LoadBalance
DependsOn: Listener
BackendServersPolicy:
Ref: BackendServersPolicy
DomainExtension:
Type: ALIYUN::SLB::DomainExtension
Properties:
Domain:
Ref: Domain
ListenerPort:
Ref: ListenerPort
ServerCertificateId:
Fn::GetAtt:
- SLBCertificate
- CertificateId
LoadBalancerId:
Ref: LoadBalance
DependsOn: Listener
Rule:
Type: ALIYUN::SLB::Rule
Properties:
ListenerPort:
Ref: ListenerPort
RuleList:
- VServerGroupId:
Ref: VServerGroup
RuleName: mytest
Url: /index
LoadBalancerId:
Ref: LoadBalance
DependsOn: Listener
BackendServerToVServerGroupAddition:
Type: ALIYUN::SLB::BackendServerToVServerGroupAddition
Properties:
BackendServers:
- ServerId:
Ref: ECS
Port: 8088
Weight: 100
VServerGroupId:
Ref: VServerGroup
DependsOn: VServerGroup
Outputs:
VServerId:
Value:
Fn::GetAtt:
- BackendServerToVServerGroupAddition
- VServerGroupId
LoadBalancerId:
Value:
Fn::GetAtt:
- Listener
- LoadBalancerId
ListenerPortsAndProtocol:
Value:
Fn::GetAtt:
- Listener
- ListenerPortsAndProtocol
OrderId:
Description: The order ID.
Value:
Fn::GetAtt:
- LoadBalance
- OrderId
NetworkType:
Description: The network type of the load balancer. "vpc" or "classic" network.
Value:
Fn::GetAtt:
- LoadBalance
- NetworkType
AddressType:
Description: The address type of the load balancer. "intranet" or "internet".
Value:
Fn::GetAtt:
- LoadBalance
- AddressType
IpAddress:
Description: The ip address of the load balancer.
Value:
Fn::GetAtt:
- LoadBalance
- IpAddress
SLBId:
Description: The id of load balance created.
Value:
Fn::GetAtt:
- LoadBalance
- LoadBalancerId
CertificateId:
Value:
Fn::GetAtt:
- SLBCertificate
- CertificateId
Fingerprint:
Value:
Fn::GetAtt:
- SLBCertificate
- Fingerprint
DomainExtensionId:
Value:
Fn::GetAtt:
- DomainExtension
- DomainExtensionId
ListenerPort:
Value:
Fn::GetAtt:
- DomainExtension
- ListenerPort
VServerGroupId:
Description: The id of VServerGroup created.
Value:
Fn::GetAtt:
- VServerGroup
- VServerGroupId
BackendServers:
Description: Backend server list in this VServerGroup.
Value:
Fn::GetAtt:
- VServerGroup
- BackendServers
Rules:
Value:
Fn::GetAtt:
- Rule
- Rules