-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathmds.yaml
531 lines (530 loc) · 17 KB
/
mds.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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
AWSTemplateFormatVersion: '2010-09-09'
Description: Deploys a Check Point Multi-Domain Server (20241027)
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: VPC Network Configuration
Parameters:
- VPC
- MDSSubnet
- Label:
default: EC2 Instance Configuration
Parameters:
- MDSName
- MDSInstanceType
- KeyName
- VolumeSize
- VolumeType
- VolumeEncryption
- EnableInstanceConnect
- TerminationProtection
- MetaDataToken
- Label:
default: IAM Permissions (ignored when the installation type is not Primary
Multi-Domain Server)
Parameters:
- MDSPermissions
- MDSPredefinedRole
- MDSSTSRoles
- Label:
default: Check Point Settings
Parameters:
- MDSVersion
- Shell
- MDSPasswordHash
- MDSMaintenancePasswordHash
- Label:
default: Multi-Domain Server Settings
Parameters:
- MDSHostname
- MDSInstallationType
- MDSSICKey
- AllowUploadDownload
- AdminCIDR
- GatewaysAddresses
- MDSBootstrapScript
- NTPPrimary
- NTPSecondary
ParameterLabels:
VPC:
default: VPC
MDSSubnet:
default: MDS subnet
MDSName:
default: MDS name
MDSInstanceType:
default: Instance type
KeyName:
default: Key name
VolumeSize:
default: Root volume size (GB)
VolumeType:
default: Volume Type
VolumeEncryption:
default: Volume encryption KMS key identifier
EnableInstanceConnect:
default: Enable AWS Instance Connect
TerminationProtection:
default: Termination Protection
MetaDataToken:
default: Metadata HTTP token
MDSPermissions:
default: IAM role
MDSPredefinedRole:
default: Existing IAM role name
MDSSTSRoles:
default: STS roles
MDSVersion:
default: Version & license
Shell:
default: Admin shell
MDSPasswordHash:
default: Password hash
MDSMaintenancePasswordHash:
default: MDS Maintenance Password hash
MDSHostname:
default: MDS hostname
MDSInstallationType:
default: MDS installation type
MDSSICKey:
default: SIC key
AllowUploadDownload:
default: Allow upload & download
AdminCIDR:
default: Administrator addresses
GatewaysAddresses:
default: Gateways addresses
MDSBootstrapScript:
default: MDS Bootstrap script
NTPPrimary:
default: Primary NTP server
NTPSecondary:
default: Secondary NTP server
Parameters:
VPC:
Description: Select an existing VPC.
Type: AWS::EC2::VPC::Id
MinLength: 1
MDSSubnet:
Description: To access the instance from the internet, make sure the subnet has.
a route to the internet
Type: AWS::EC2::Subnet::Id
MinLength: 1
MDSName:
Description: The MDS name tag.
Type: String
Default: Check-Point-MDS
MDSInstanceType:
Description: The instance type of the Multi-Domain Server.
Type: String
Default: m5.2xlarge
AllowedValues:
- c5.large
- c5.xlarge
- c5.2xlarge
- c5.4xlarge
- c5.9xlarge
- c5.12xlarge
- c5.18xlarge
- c5.24xlarge
- c5n.large
- c5n.xlarge
- c5n.2xlarge
- c5n.4xlarge
- c5n.9xlarge
- c5n.18xlarge
- c5d.large
- c5d.xlarge
- c5d.2xlarge
- c5d.4xlarge
- c5d.9xlarge
- c5d.12xlarge
- c5d.18xlarge
- c5d.24xlarge
- m5.large
- m5.xlarge
- m5.2xlarge
- m5.4xlarge
- m5.8xlarge
- m5.12xlarge
- m5.16xlarge
- m5.24xlarge
- m6i.large
- m6i.xlarge
- m6i.2xlarge
- m6i.4xlarge
- m6i.8xlarge
- m6i.12xlarge
- m6i.16xlarge
- m6i.24xlarge
- m6i.32xlarge
- c6i.large
- c6i.xlarge
- c6i.2xlarge
- c6i.4xlarge
- c6i.8xlarge
- c6i.12xlarge
- c6i.16xlarge
- c6i.24xlarge
- c6i.32xlarge
- c6in.large
- c6in.xlarge
- c6in.2xlarge
- c6in.4xlarge
- c6in.8xlarge
- c6in.12xlarge
- c6in.16xlarge
- c6in.24xlarge
- c6in.32xlarge
- r5.large
- r5.xlarge
- r5.2xlarge
- r5.4xlarge
- r5.8xlarge
- r5.12xlarge
- r5.16xlarge
- r5.24xlarge
- r5a.large
- r5a.xlarge
- r5a.2xlarge
- r5a.4xlarge
- r5a.8xlarge
- r5a.12xlarge
- r5a.16xlarge
- r5a.24xlarge
- r5b.large
- r5b.xlarge
- r5b.2xlarge
- r5b.4xlarge
- r5b.8xlarge
- r5b.12xlarge
- r5b.16xlarge
- r5b.24xlarge
- r5n.large
- r5n.xlarge
- r5n.2xlarge
- r5n.4xlarge
- r5n.8xlarge
- r5n.12xlarge
- r5n.16xlarge
- r5n.24xlarge
- r6i.large
- r6i.xlarge
- r6i.2xlarge
- r6i.4xlarge
- r6i.8xlarge
- r6i.12xlarge
- r6i.16xlarge
- r6i.24xlarge
- r6i.32xlarge
- m6a.large
- m6a.xlarge
- m6a.2xlarge
- m6a.4xlarge
- m6a.8xlarge
- m6a.12xlarge
- m6a.16xlarge
- m6a.24xlarge
- m6a.32xlarge
- m6a.48xlarge
ConstraintDescription: must be a valid EC2 instance type.
KeyName:
Description: The EC2 Key Pair to allow SSH access to the instance.
Type: AWS::EC2::KeyPair::KeyName
MinLength: 1
ConstraintDescription: must be the name of an existing EC2 KeyPair.
VolumeSize:
Type: Number
MinValue: 100
Default: 100
VolumeType:
Description: General Purpose SSD Volume Type
Type: String
Default: gp3
AllowedValues:
- gp3
- gp2
VolumeEncryption:
Description: KMS or CMK key Identifier - Use key ID, alias or ARN. Key alias should be prefixed with 'alias/' (e.g. for KMS default alias 'aws/ebs' - insert 'alias/aws/ebs').
Type: String
Default: alias/aws/ebs
EnableInstanceConnect:
Description: Enable SSH connection over AWS web console.
Type: String
Default: false
AllowedValues:
- true
- false
TerminationProtection:
Description: Prevents an instance from accidental termination.
Type: String
Default: false
AllowedValues:
- true
- false
MetaDataToken:
Description: Set true to deploy the instance with metadata v2 token required.
Type: String
Default: true
AllowedValues:
- true
- false
MDSPermissions:
Description: IAM role to attach to the instance profile.
Type: String
Default: Create with read permissions
AllowedValues:
- None (configure later)
- Use existing (specify an existing IAM role name)
- Create with assume role permissions (specify an STS role ARN)
- Create with read permissions
- Create with read-write permissions
MDSPredefinedRole:
Description: A predefined IAM role to attach to the instance profile. Ignored
if IAM role is not set to 'Use existing'.
Type: String
Default: ''
MDSSTSRoles:
Description: The IAM role will be able to assume these STS Roles (comma separated
list of ARNs, without spaces). Ignored if IAM role is set to 'None' or 'Use
existing'.
Type: CommaDelimitedList
Default: ''
MDSVersion:
Description: The license to install on the Multi-Domain Server.
Type: String
Default: R81.20-BYOL
AllowedValues:
- R81.10-BYOL
- R81.20-BYOL
- R82-BYOL
Shell:
Description: Change the admin shell to enable advanced command line configuration.
Type: String
Default: /etc/cli.sh
AllowedValues:
- /etc/cli.sh
- /bin/bash
- /bin/csh
- /bin/tcsh
MDSPasswordHash:
Description: Admin user's password hash (use command "openssl passwd -6 PASSWORD"
to get the PASSWORD's hash). (optional)
Type: String
Default: ''
AllowedPattern: '[\$\./a-zA-Z0-9]*'
NoEcho: true
MDSMaintenancePasswordHash:
Description: Check Point recommends setting Admin user's password and maintenance-mode password for recovery purposes. For R81.10 and below the Admin user's password is used also as maintenance-mode password. (To generate a password hash use the command "grub2-mkpasswd-pbkdf2" on Linux and paste it here). (optional)
Type: String
Default: ''
AllowedPattern: '[\$\./a-zA-Z0-9]*'
NoEcho: true
MDSHostname:
Description: The name must not contain reserved words. For details, refer to sk40179 (optional).
Type: String
Default: mds-aws
AllowedPattern: '^([A-Za-z]([-0-9A-Za-z]{0,61}[0-9A-Za-z])?|)$'
ConstraintDescription: A valid hostname label or an empty string.
MDSInstallationType:
Description: Determines the Multi-Domain Server installation type.
Type: String
Default: Primary Multi-Domain Server
AllowedValues:
- Primary Multi-Domain Server
- Secondary Multi-Domain Server
- Multi-Domain Log Server
MDSSICKey:
Description: >-
Mandatory if deploying a Secondary Multi-Domain Server or Multi-Domain Log Server,
the Secure Internal Communication key creates trusted connections between Check
Point components. Choose a random string consisting of at least 8 alphanumeric
characters.
Type: String
Default: ''
AllowedPattern: '(|[a-zA-Z0-9]{8,})'
ConstraintDescription: Can be empty if this is a Primary Multi-Domain Server.
Otherwise, at least 8 alpha numeric characters.
NoEcho: true
AllowUploadDownload:
Description: Automatically download updates and share statistical data for product improvement purpose.
Type: String
Default: true
AllowedValues:
- true
- false
AdminCIDR:
Description: Allow web, SSH, and graphical clients only from this network to communicate
with the Multi-Domain Server. The address should be either 0.0.0.0/0 (any address) or <IP>/32 (specific address)
Type: String
AllowedPattern: '^((0.0.0.0\/0)|)$|^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/32)$'
ConstraintDescription: Administrator address must be either 0.0.0.0/0 or <IP>/32
GatewaysAddresses:
Description: Allow gateways only from this network to communicate with the Multi-Domain.
Server
Type: String
AllowedPattern: '^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$'
MDSBootstrapScript:
Description: An optional script with semicolon (;) separated commands to run on the initial boot. (optional)
Type: String
Default: ''
NoEcho: true
NTPPrimary:
Description: (optional)
Type: String
Default: 169.254.169.123
AllowedPattern: '[\.a-zA-Z0-9\-]*'
NTPSecondary:
Description: (optional)
Type: String
Default: '0.pool.ntp.org'
AllowedPattern: '[\.a-zA-Z0-9\-]*'
Conditions:
EncryptedVolume: !Not [!Equals [!Ref VolumeEncryption, '']]
CreateRole: !And
- !Or
- !Condition PrimaryMDS
- !Condition SecondaryMDS
- !Or
- !Equals [!Ref MDSPermissions, Create with assume role permissions (specify an STS role ARN)]
- !Equals [!Ref MDSPermissions, Create with read permissions]
- !Equals [!Ref MDSPermissions, Create with read-write permissions]
UseRole: !And [!Or [!Condition PrimaryMDS, !Condition SecondaryMDS], !Not [!Equals [!Ref MDSPermissions, None (configure later)]]]
PrimaryMDS: !Equals [!Ref MDSInstallationType, Primary Multi-Domain Server]
SecondaryMDS: !Equals [!Ref MDSInstallationType, Secondary Multi-Domain Server]
PreRole: !And [!Condition UseRole, !Not [!Condition CreateRole]]
EnableMetaDataToken: !Equals [!Ref MetaDataToken, true]
Resources:
AMI:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: https://cgi-cfts.s3.amazonaws.com/utils/amis.yaml
Parameters:
Version: !Join ['-', [!Ref MDSVersion, MGMT]]
MDSSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: MDS security group
VpcId: !Ref VPC
SecurityGroupIngress:
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 257
ToPort: 257
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 8211
ToPort: 8211
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18191
ToPort: 18191
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18192
ToPort: 18192
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18208
ToPort: 18208
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18210
ToPort: 18210
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18211
ToPort: 18211
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18221
ToPort: 18221
- CidrIp: !Ref GatewaysAddresses
IpProtocol: tcp
FromPort: 18264
ToPort: 18264
- CidrIp: !Ref AdminCIDR
IpProtocol: tcp
FromPort: 22
ToPort: 22
- CidrIp: !Ref AdminCIDR
IpProtocol: tcp
FromPort: 443
ToPort: 443
- CidrIp: !Ref AdminCIDR
IpProtocol: tcp
FromPort: 18190
ToPort: 18190
- CidrIp: !Ref AdminCIDR
IpProtocol: tcp
FromPort: 19009
ToPort: 19009
MDSRoleStack:
Type: AWS::CloudFormation::Stack
Condition: CreateRole
Properties:
TemplateURL: https://cgi-cfts.s3.amazonaws.com/iam/cme-iam-role.yaml
Parameters:
Permissions: !Ref MDSPermissions
STSRoles: !Join [',', !Ref MDSSTSRoles]
InstanceProfile:
Type: AWS::IAM::InstanceProfile
Condition: PreRole
Properties:
Path: /
Roles:
- !Ref MDSPredefinedRole
MDSInstance:
Type: AWS::EC2::Instance
DependsOn: [MDSSecurityGroup, MDSLaunchTemplate]
Properties:
LaunchTemplate:
LaunchTemplateId: !Ref MDSLaunchTemplate
Version: !GetAtt MDSLaunchTemplate.LatestVersionNumber
DisableApiTermination: !Ref TerminationProtection
Tags:
- Key: Name
Value: !Ref MDSName
NetworkInterfaces:
- DeviceIndex: 0
AssociatePublicIpAddress: false
Description: eth0
GroupSet:
- !Ref MDSSecurityGroup
DeleteOnTermination: true
SubnetId: !Ref MDSSubnet
MDSLaunchTemplate:
Type: AWS::EC2::LaunchTemplate
Properties:
LaunchTemplateData:
KeyName: !Ref KeyName
ImageId: !GetAtt AMI.Outputs.ImageId
InstanceType: !Ref MDSInstanceType
MetadataOptions:
HttpTokens: !If [EnableMetaDataToken, required, optional]
BlockDeviceMappings:
- DeviceName: '/dev/xvda'
Ebs:
Encrypted: !If [ EncryptedVolume, true, false ]
KmsKeyId: !If [ EncryptedVolume, !Ref VolumeEncryption, !Ref 'AWS::NoValue' ]
VolumeType: !Ref VolumeType
VolumeSize: !Ref VolumeSize
IamInstanceProfile:
Name: !If [ UseRole, !If [ PreRole, !Ref InstanceProfile, !GetAtt MDSRoleStack.Outputs.CMEIAMRole ], !Ref 'AWS::NoValue' ]
UserData: !Base64
Fn::Join:
- |+
- - '#cloud-config'
- 'runcmd:'
- ' - |'
- ' set -e'
- !Sub ' admin_shell=${Shell} ; allow_info=${AllowUploadDownload} ; hostname=${MDSHostname} ; eic=${EnableInstanceConnect} ; ntp1=${NTPPrimary} ; ntp2=${NTPSecondary} ; admin_subnet=${AdminCIDR}'
- !If [PrimaryMDS, ' primary=true ; secondary=false', !If [SecondaryMDS, ' primary=false ; secondary=true', ' primary=false ; secondary=false']]
- !If [PrimaryMDS, ' sic=notused', !Join ['', [' sic="$(echo ', 'Fn::Base64': !Ref MDSSICKey, ')"']]]
- !Join ['', [' bootstrap="$(echo ', 'Fn::Base64': !Ref MDSBootstrapScript, ')"']]
- !Join ['', [' pwd_hash="$(echo ', 'Fn::Base64': !Ref MDSPasswordHash, ')"']]
- !Join ['', [' maintenance_pwd_hash="$(echo ', 'Fn::Base64': !Ref MDSMaintenancePasswordHash, ')"']]
- !Sub [' version=${Version}', {Version: !Select [0, !Split ['-', !Ref MDSVersion]]}]
- ' python3 /etc/cloud_config.py sicKey=\"${sic}\" installationType=\"mds\" osVersion=\"${version}\" allowUploadDownload=\"${allow_info}\" templateVersion=\"20240204\" templateName=\"mds\" shell=\"${admin_shell}\" enableInstanceConnect=\"${eic}\" hostName=\"${hostname}\" ntpPrimary=\"${ntp1}\" ntpSecondary=\"${ntp2}\" passwordHash=\"${pwd_hash}\" MaintenanceModePassword=\"${maintenance_pwd_hash}\" primary=\"${primary}\" secondary=\"${secondary}\" adminSubnet=\"${admin_subnet}\" bootstrapScript64=\"${bootstrap}\"'
VersionDescription: Initial template version