-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSharedInfra.yaml
507 lines (469 loc) · 15.2 KB
/
SharedInfra.yaml
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
Parameters:
KuiperInstanceType:
Type: String
Default: t3.large
AllowedValues:
- m5.large
- m5.xlarge
- m5.2xlarge
- m6i.large
- m6i.xlarge
- m6i.2xlarge
- t3.large
- t3.xlarge
- t3.2xlarge
PulseInstanceType:
Type: String
Default: t3.xlarge
AllowedValues:
- m5.large
- m5.xlarge
- m5.2xlarge
- m6i.large
- m6i.xlarge
- m6i.2xlarge
- t3.large
- t3.xlarge
- t3.2xlarge
SQLInstanceType:
Type: String
Default: t3.2xlarge
AllowedValues:
- m5.large
- m5.xlarge
- m5.2xlarge
- m6i.large
- m6i.xlarge
- m6i.2xlarge
- t3.large
- t3.xlarge
- t3.2xlarge
ServerOS:
Description: Server OS
Type: String
Default: Server2019
AllowedValues: [Server2022, Server2019, Server2016]
ConstraintDescription: Must be supported Windows Server OS
Timezone:
Description: Server Time Zone
Type: String
AllowedValues: [Pacific Standard Time, Mountain Standard Time, Central Standard Time, Eastern Standard Time]
SQLVersion:
Description: Which SQL version will be deployed?
Type: String
Default: SQLStandard
AllowedValues: [SQLStandard, SQLEnterprise]
KuiperServerName:
Description: Server Name for Kuiper Server
Type: String
PulseServerName:
Description: Server Name for System Pulse Server
Type: String
SQLServerName:
Description: Server Name for Multipurpose SQL Server
Type: String
KeyPairName:
Description: "Amazon EC2 Key Pair to connect to new instances"
Type: AWS::EC2::KeyPair::KeyName
ServerVPCId:
Description: VPC to create the VMs in
Type: AWS::EC2::VPC::Id
ServerSubnet1:
Type: AWS::EC2::Subnet::Id
Description: The subnet to create Primary VM in
ServerSubnet2:
Type: AWS::EC2::Subnet::Id
Description: The subnet to create HA (Second) VM in. Will only be created if HA is set to 'Yes'
DirectoryName:
Type: String
Description: The name of the AWS managed Microsoft AD to join the servers to
Default: corp.company.com
HA:
Description: Should HA be added for Kuiper and System Pulse
Type: String
Default: 'No'
AllowedValues: ['No', 'Yes']
Conditions:
HA: !Equals
- !Ref HA
- 'Yes'
Rules:
Subnet1InVPC:
Assertions:
- Assert:
'Fn::Equals':
- 'Fn::ValueOf':
- ServerSubnet1
- VpcId
- Ref: ServerVPCId
AssertDescription: All subnets must in the VPC
Subnet2InVPC:
Assertions:
- Assert:
'Fn::Equals':
- 'Fn::ValueOf':
- ServerSubnet2
- VpcId
- Ref: ServerVPCId
AssertDescription: All subnets must in the VPC
SeparateSubnetAZs:
Assertions:
- Assert:
'Fn::Not':
- 'Fn::Equals':
- 'Fn::ValueOf':
- ServerSubnet1
- AvailabilityZone
- 'Fn::ValueOf':
- ServerSubnet2
- AvailabilityZone
AssertDescription: Subnets must be in different AZs
Mappings:
RegionMap:
us-east-1:
Server2022: ami-0fb5befc1450ca205
Server2019: ami-0c95d38b24a19de18
Server2016: ami-03fdc8b14e44968e6
SQLStandard: ami-0ca45684f112f66c0
SQLEnterprise: ami-08faaba7f33a5ea92
us-east-2:
Server2022: ami-02bddcf6b9473bd61
Server2019: ami-0d72555523e18b6d7
Server2016: ami-04d1c6a7290ee815a
SQLStandard: ami-01aa6aea4f94cde98
SQLEnterprise: ami-0ca68cef7ea227405
us-west-1:
Server2022: ami-03f9d9db9db74d02a
Server2019: ami-0a6faf8a86971bd15
Server2016: ami-0422fbbb4ff0c83b6
SQLStandard: ami-0b06751f71a66eefa
SQLEnterprise: ami-002296d8461f81f86
us-west-2:
Server2022: ami-090b2f6d3af372d21
Server2019: ami-0e6bf13e3eb85d0ba
Server2016: ami-034e86083b6e63887
SQLStandard: ami-0a4dfa25dae331ee6
SQLEnterprise: ami-035277a0ef845e843
Resources:
#https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
EC2InstanceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action: sts:AssumeRole
Principal:
Service:
- ec2.amazonaws.com
Description: IAM Role used by WSS VMs to Systems Manager core functionality, Domain Join, and Install/Run the Cloudwatch agent.
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore
- arn:aws:iam::aws:policy/AmazonSSMDirectoryServiceAccess
- arn:aws:iam::aws:policy/CloudWatchAgentServerPolicy
#https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
EC2InstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Path: /
Roles:
- !Ref EC2InstanceRole
#https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterface.html
KuiperNIC1:
Type: AWS::EC2::NetworkInterface
Properties:
Description: !Sub 'NIC for ${KuiperServerName}1'
GroupSet:
- !ImportValue EpicRO-KuiperSG
SubnetId: !Ref ServerSubnet1
Tags:
- Key: Name
Value: !Sub '${KuiperServerName}1-NIC1-${AWS::StackName}'
KuiperNIC2:
Type: AWS::EC2::NetworkInterface
Condition: HA
Properties:
Description: !Sub 'NIC for ${KuiperServerName}2'
GroupSet:
- !ImportValue EpicRO-KuiperSG
SubnetId: !Ref ServerSubnet2
Tags:
- Key: Name
Value: !Sub '${KuiperServerName}2-NIC1-${AWS::StackName}'
PulseNIC1:
Type: AWS::EC2::NetworkInterface
Properties:
Description: !Sub 'NIC for ${PulseServerName}1'
GroupSet:
- !ImportValue EpicRO-PulseSG
SubnetId: !Ref ServerSubnet1
Tags:
- Key: Name
Value: !Sub '${PulseServerName}1-NIC1-${AWS::StackName}'
PulseNIC2:
Type: AWS::EC2::NetworkInterface
Condition: HA
Properties:
Description: !Sub 'NIC for ${PulseServerName}2'
GroupSet:
- !ImportValue EpicRO-PulseSG
SubnetId: !Ref ServerSubnet2
Tags:
- Key: Name
Value: !Sub '${PulseServerName}2-NIC1-${AWS::StackName}'
SQLNIC:
Type: AWS::EC2::NetworkInterface
Properties:
Description: !Sub 'NIC for ${SQLServerName}'
GroupSet:
- !ImportValue EpicRO-SQLSG
SubnetId: !Ref ServerSubnet1
Tags:
- Key: Name
Value: !Sub '${SQLServerName}-NIC1-${AWS::StackName}'
#https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html
KuiperServer1:
Type: AWS::EC2::Instance
Properties:
AvailabilityZone: !Select [0, Fn::GetAZs: !Ref AWS::Region]
BlockDeviceMappings:
- DeviceName: "/dev/sda1"
Ebs:
VolumeType: "gp3"
DeleteOnTermination: "false"
VolumeSize: "50"
IamInstanceProfile: !Ref EC2InstanceProfile
ImageId: !FindInMap [RegionMap, !Ref 'AWS::Region', !Ref ServerOS]
InstanceType: !Ref KuiperInstanceType
KeyName: !Ref KeyPairName
NetworkInterfaces:
- DeviceIndex: "0"
NetworkInterfaceId: !Ref "KuiperNIC1"
UserData:
Fn::Base64: !Sub |
<powershell>
# Rename computer
Rename-Computer -NewName ${KuiperServerName}1
Set-Timezone -Name '${Timezone}'
# Restart computer
Restart-Computer
</powershell>
Tags:
- Key: Name
Value: !Sub ${KuiperServerName}1
- Key: PatchGroup
Value: EpicROSharedInfra
KuiperServer2:
Type: AWS::EC2::Instance
Condition: HA
Properties:
AvailabilityZone: !Select [1, Fn::GetAZs: !Ref AWS::Region]
BlockDeviceMappings:
- DeviceName: "/dev/sda1"
Ebs:
VolumeType: "gp3"
DeleteOnTermination: "false"
VolumeSize: "50"
IamInstanceProfile: !Ref EC2InstanceProfile
ImageId: !FindInMap [RegionMap, !Ref 'AWS::Region', !Ref ServerOS]
InstanceType: !Ref KuiperInstanceType
KeyName: !Ref KeyPairName
NetworkInterfaces:
- DeviceIndex: "0"
NetworkInterfaceId: !Ref "KuiperNIC2"
UserData:
Fn::Base64: !Sub |
<powershell>
# Rename computer
Rename-Computer -NewName ${KuiperServerName}2
Set-Timezone -Name '${Timezone}'
# Restart computer
Restart-Computer
</powershell>
Tags:
- Key: Name
Value: !Sub ${KuiperServerName}2
- Key: PatchGroup
Value: EpicROSharedInfra
PulseServer1:
Type: AWS::EC2::Instance
Properties:
AvailabilityZone: !Select [0, Fn::GetAZs: !Ref AWS::Region]
BlockDeviceMappings:
- DeviceName: "/dev/sda1"
Ebs:
VolumeType: "gp3"
DeleteOnTermination: "false"
VolumeSize: "50"
IamInstanceProfile: !Ref EC2InstanceProfile
ImageId: !FindInMap [RegionMap, !Ref 'AWS::Region', !Ref ServerOS]
InstanceType: !Ref PulseInstanceType
KeyName: !Ref KeyPairName
NetworkInterfaces:
- DeviceIndex: "0"
NetworkInterfaceId: !Ref "PulseNIC1"
UserData:
Fn::Base64: !Sub |
<powershell>
# Rename computer
Rename-Computer -NewName ${PulseServerName}1
Set-Timezone -Name '${Timezone}'
# Restart computer
Restart-Computer
</powershell>
Tags:
- Key: Name
Value: !Sub ${PulseServerName}1
- Key: PatchGroup
Value: EpicROSharedInfra
PulseServer2:
Type: AWS::EC2::Instance
Condition: HA
Properties:
AvailabilityZone: !Select [1, Fn::GetAZs: !Ref AWS::Region]
BlockDeviceMappings:
- DeviceName: "/dev/sda1"
Ebs:
VolumeType: "gp3"
DeleteOnTermination: "false"
VolumeSize: "50"
IamInstanceProfile: !Ref EC2InstanceProfile
ImageId: !FindInMap [RegionMap, !Ref 'AWS::Region', !Ref ServerOS]
InstanceType: !Ref PulseInstanceType
KeyName: !Ref KeyPairName
NetworkInterfaces:
- DeviceIndex: "0"
NetworkInterfaceId: !Ref "PulseNIC2"
UserData:
Fn::Base64: !Sub |
<powershell>
# Rename computer
Rename-Computer -NewName ${PulseServerName}2
Set-Timezone -Name '${Timezone}'
# Restart computer
Restart-Computer
</powershell>
Tags:
- Key: Name
Value: !Sub ${PulseServerName}2
- Key: PatchGroup
Value: EpicROSharedInfra
SQLServer1:
Type: AWS::EC2::Instance
Properties:
AvailabilityZone: !Select [0, Fn::GetAZs: !Ref AWS::Region]
BlockDeviceMappings:
- DeviceName: "/dev/sda1"
Ebs:
VolumeType: "gp3"
DeleteOnTermination: "false"
VolumeSize: "70"
IamInstanceProfile: !Ref EC2InstanceProfile
ImageId: !FindInMap [RegionMap, !Ref 'AWS::Region', !Ref SQLVersion]
InstanceType: !Ref SQLInstanceType
KeyName: !Ref KeyPairName
NetworkInterfaces:
- DeviceIndex: "0"
NetworkInterfaceId: !Ref "SQLNIC"
UserData:
Fn::Base64: !Sub |
<powershell>
# Rename computer
Rename-Computer -NewName ${SQLServerName}1
Set-Timezone -Name '${Timezone}'
# Restart computer
Restart-Computer
</powershell>
Tags:
- Key: Name
Value: !Sub ${SQLServerName}1
- Key: PatchGroup
Value: EpicROSharedInfra
Kuiper1JoinADAssociation:
Type: AWS::SSM::Association
Properties:
AssociationName: !Sub ${KuiperServerName}1-EpicRO-AWS-Join-Directory-Service-Domain-Association
Name: AWS-JoinDirectoryServiceDomain
Parameters:
directoryId:
- !ImportValue EpicRO-MSAD
directoryName:
- !Ref DirectoryName
dnsIpAddresses:
- !ImportValue EpicRO-MSADDNSIP1
- !ImportValue EpicRO-MSADDNSIP2
Targets:
- Key: InstanceIds
Values:
- !Ref KuiperServer1
Kuiper2JoinADAssociation:
Type: AWS::SSM::Association
Condition: HA
Properties:
AssociationName: !Sub ${KuiperServerName}2-EpicRO-AWS-Join-Directory-Service-Domain-Association
Name: AWS-JoinDirectoryServiceDomain
Parameters:
directoryId:
- !ImportValue EpicRO-MSAD
directoryName:
- !Ref DirectoryName
dnsIpAddresses:
- !ImportValue EpicRO-MSADDNSIP1
- !ImportValue EpicRO-MSADDNSIP2
Targets:
- Key: InstanceIds
Values:
- !Ref KuiperServer2
Pulse1JoinADAssociation:
Type: AWS::SSM::Association
Properties:
AssociationName: !Sub ${PulseServerName}1-EpicRO-AWS-Join-Directory-Service-Domain-Association
Name: AWS-JoinDirectoryServiceDomain
Parameters:
directoryId:
- !ImportValue EpicRO-MSAD
directoryName:
- !Ref DirectoryName
dnsIpAddresses:
- !ImportValue EpicRO-MSADDNSIP1
- !ImportValue EpicRO-MSADDNSIP2
Targets:
- Key: InstanceIds
Values:
- !Ref PulseServer1
Pulse2JoinADAssociation:
Type: AWS::SSM::Association
Condition: HA
Properties:
AssociationName: !Sub ${PulseServerName}2-EpicRO-AWS-Join-Directory-Service-Domain-Association
Name: AWS-JoinDirectoryServiceDomain
Parameters:
directoryId:
- !ImportValue EpicRO-MSAD
directoryName:
- !Ref DirectoryName
dnsIpAddresses:
- !ImportValue EpicRO-MSADDNSIP1
- !ImportValue EpicRO-MSADDNSIP2
Targets:
- Key: InstanceIds
Values:
- !Ref PulseServer2
SQL1JoinADAssociation:
Type: AWS::SSM::Association
Properties:
AssociationName: !Sub ${SQLServerName}1-EpicRO-AWS-Join-Directory-Service-Domain-Association
Name: AWS-JoinDirectoryServiceDomain
Parameters:
directoryId:
- !ImportValue EpicRO-MSAD
directoryName:
- !Ref DirectoryName
dnsIpAddresses:
- !ImportValue EpicRO-MSADDNSIP1
- !ImportValue EpicRO-MSADDNSIP2
Targets:
- Key: InstanceIds
Values:
- !Ref SQLServer1