-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathmachine-image.ts
508 lines (451 loc) · 13.7 KB
/
machine-image.ts
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
import * as ssm from '@aws-cdk/aws-ssm';
import * as cxschema from '@aws-cdk/cloud-assembly-schema';
import { Construct, ContextProvider, Stack, Token } from '@aws-cdk/core';
import * as cxapi from '@aws-cdk/cx-api';
import { UserData } from './user-data';
import { WindowsVersion } from './windows-versions';
/**
* Interface for classes that can select an appropriate machine image to use
*/
export interface IMachineImage {
/**
* Return the image to use in the given context
*/
getImage(scope: Construct): MachineImageConfig;
}
/**
* Factory functions for standard Amazon Machine Image objects.
*/
export abstract class MachineImage {
/**
* A Windows image that is automatically kept up-to-date
*
* This Machine Image automatically updates to the latest version on every
* deployment. Be aware this will cause your instances to be replaced when a
* new version of the image becomes available. Do not store stateful information
* on the instance if you are using this image.
*/
public static latestWindows(version: WindowsVersion, props?: WindowsImageProps): IMachineImage {
return new WindowsImage(version, props);
}
/**
* An Amazon Linux image that is automatically kept up-to-date
*
* This Machine Image automatically updates to the latest version on every
* deployment. Be aware this will cause your instances to be replaced when a
* new version of the image becomes available. Do not store stateful information
* on the instance if you are using this image.
*/
public static latestAmazonLinux(props?: AmazonLinuxImageProps): IMachineImage {
return new AmazonLinuxImage(props);
}
/**
* A Linux image where you specify the AMI ID for every region
*
* @param amiMap For every region where you are deploying the stack,
* specify the AMI ID for that region.
* @param props Customize the image by supplying additional props
*/
public static genericLinux(amiMap: Record<string, string>, props?: GenericLinuxImageProps): IMachineImage {
return new GenericLinuxImage(amiMap, props);
}
/**
* A Windows image where you specify the AMI ID for every region
*
* @param amiMap For every region where you are deploying the stack,
* specify the AMI ID for that region.
* @param props Customize the image by supplying additional props
*/
public static genericWindows(amiMap: Record<string, string>, props?: GenericWindowsImageProps): IMachineImage {
return new GenericWindowsImage(amiMap, props);
}
/**
* Look up a shared Machine Image using DescribeImages
*
* The most recent, available, launchable image matching the given filter
* criteria will be used. Looking up AMIs may take a long time; specify
* as many filter criteria as possible to narrow down the search.
*
* The AMI selected will be cached in `cdk.context.json` and the same value
* will be used on future runs. To refresh the AMI lookup, you will have to
* evict the value from the cache using the `cdk context` command. See
* https://docs.aws.amazon.com/cdk/latest/guide/context.html for more information.
*/
public static lookup(props: LookupMachineImageProps): IMachineImage {
return new LookupMachineImage(props);
}
}
/**
* Configuration for a machine image
*/
export interface MachineImageConfig {
/**
* The AMI ID of the image to use
*/
readonly imageId: string;
/**
* Operating system type for this image
*/
readonly osType: OperatingSystemType;
/**
* Initial UserData for this image
*/
readonly userData: UserData;
}
/**
* Configuration options for WindowsImage
*/
export interface WindowsImageProps {
/**
* Initial user data
*
* @default - Empty UserData for Windows machines
*/
readonly userData?: UserData;
}
/**
* Select the latest version of the indicated Windows version
*
* This Machine Image automatically updates to the latest version on every
* deployment. Be aware this will cause your instances to be replaced when a
* new version of the image becomes available. Do not store stateful information
* on the instance if you are using this image.
*
* The AMI ID is selected using the values published to the SSM parameter store.
*
* https://aws.amazon.com/blogs/mt/query-for-the-latest-windows-ami-using-systems-manager-parameter-store/
*/
export class WindowsImage implements IMachineImage {
constructor(private readonly version: WindowsVersion, private readonly props: WindowsImageProps = {}) {
}
/**
* Return the image to use in the given context
*/
public getImage(scope: Construct): MachineImageConfig {
const parameterName = this.imageParameterName();
const ami = ssm.StringParameter.valueForTypedStringParameter(scope, parameterName, ssm.ParameterType.AWS_EC2_IMAGE_ID);
return {
imageId: ami,
userData: this.props.userData ?? UserData.forWindows(),
osType: OperatingSystemType.WINDOWS,
};
}
/**
* Construct the SSM parameter name for the given Windows image
*/
private imageParameterName(): string {
return '/aws/service/ami-windows-latest/' + this.version;
}
}
/**
* CPU type
*/
export enum AmazonLinuxCpuType {
/**
* arm64 CPU type
*/
ARM_64 = 'arm64',
/**
* x86_64 CPU type
*/
X86_64 = 'x86_64',
}
/**
* Amazon Linux image properties
*/
export interface AmazonLinuxImageProps {
/**
* What generation of Amazon Linux to use
*
* @default AmazonLinux
*/
readonly generation?: AmazonLinuxGeneration;
/**
* What edition of Amazon Linux to use
*
* @default Standard
*/
readonly edition?: AmazonLinuxEdition;
/**
* Virtualization type
*
* @default HVM
*/
readonly virtualization?: AmazonLinuxVirt;
/**
* What storage backed image to use
*
* @default GeneralPurpose
*/
readonly storage?: AmazonLinuxStorage;
/**
* Initial user data
*
* @default - Empty UserData for Linux machines
*/
readonly userData?: UserData;
/**
* CPU Type
*
* @default X86_64
*/
readonly cpuType?: AmazonLinuxCpuType;
}
/**
* Selects the latest version of Amazon Linux
*
* This Machine Image automatically updates to the latest version on every
* deployment. Be aware this will cause your instances to be replaced when a
* new version of the image becomes available. Do not store stateful information
* on the instance if you are using this image.
*
* The AMI ID is selected using the values published to the SSM parameter store.
*/
export class AmazonLinuxImage implements IMachineImage {
private readonly generation: AmazonLinuxGeneration;
private readonly edition: AmazonLinuxEdition;
private readonly virtualization: AmazonLinuxVirt;
private readonly storage: AmazonLinuxStorage;
private readonly cpu: AmazonLinuxCpuType;
constructor(private readonly props: AmazonLinuxImageProps = {}) {
this.generation = (props && props.generation) || AmazonLinuxGeneration.AMAZON_LINUX;
this.edition = (props && props.edition) || AmazonLinuxEdition.STANDARD;
this.virtualization = (props && props.virtualization) || AmazonLinuxVirt.HVM;
this.storage = (props && props.storage) || AmazonLinuxStorage.GENERAL_PURPOSE;
this.cpu = (props && props.cpuType) || AmazonLinuxCpuType.X86_64;
}
/**
* Return the image to use in the given context
*/
public getImage(scope: Construct): MachineImageConfig {
const parts: Array<string|undefined> = [
this.generation,
'ami',
this.edition !== AmazonLinuxEdition.STANDARD ? this.edition : undefined,
this.virtualization,
this.cpu,
this.storage,
].filter(x => x !== undefined); // Get rid of undefineds
const parameterName = '/aws/service/ami-amazon-linux-latest/' + parts.join('-');
const ami = ssm.StringParameter.valueForTypedStringParameter(scope, parameterName, ssm.ParameterType.AWS_EC2_IMAGE_ID);
return {
imageId: ami,
userData: this.props.userData ?? UserData.forLinux(),
osType: OperatingSystemType.LINUX,
};
}
}
/**
* What generation of Amazon Linux to use
*/
export enum AmazonLinuxGeneration {
/**
* Amazon Linux
*/
AMAZON_LINUX = 'amzn',
/**
* Amazon Linux 2
*/
AMAZON_LINUX_2 = 'amzn2',
}
/**
* Amazon Linux edition
*/
export enum AmazonLinuxEdition {
/**
* Standard edition
*/
STANDARD = 'standard',
/**
* Minimal edition
*/
MINIMAL = 'minimal'
}
/**
* Virtualization type for Amazon Linux
*/
export enum AmazonLinuxVirt {
/**
* HVM virtualization (recommended)
*/
HVM = 'hvm',
/**
* PV virtualization
*/
PV = 'pv'
}
export enum AmazonLinuxStorage {
/**
* EBS-backed storage
*/
EBS = 'ebs',
/**
* S3-backed storage
*/
S3 = 'ebs',
/**
* General Purpose-based storage (recommended)
*/
GENERAL_PURPOSE = 'gp2',
}
/**
* Configuration options for GenericLinuxImage
*/
export interface GenericLinuxImageProps {
/**
* Initial user data
*
* @default - Empty UserData for Linux machines
*/
readonly userData?: UserData;
}
/**
* Configuration options for GenericWindowsImage
*/
export interface GenericWindowsImageProps {
/**
* Initial user data
*
* @default - Empty UserData for Windows machines
*/
readonly userData?: UserData;
}
/**
* Construct a Linux machine image from an AMI map
*
* Linux images IDs are not published to SSM parameter store yet, so you'll have to
* manually specify an AMI map.
*/
export class GenericLinuxImage implements IMachineImage {
constructor(private readonly amiMap: {[region: string]: string}, private readonly props: GenericLinuxImageProps = {}) {
}
public getImage(scope: Construct): MachineImageConfig {
const region = Stack.of(scope).region;
if (Token.isUnresolved(region)) {
throw new Error('Unable to determine AMI from AMI map since stack is region-agnostic');
}
const ami = region !== 'test-region' ? this.amiMap[region] : 'ami-12345';
if (!ami) {
throw new Error(`Unable to find AMI in AMI map: no AMI specified for region '${region}'`);
}
return {
imageId: ami,
userData: this.props.userData ?? UserData.forLinux(),
osType: OperatingSystemType.LINUX,
};
}
}
/**
* Construct a Windows machine image from an AMI map
*
* Allows you to create a generic Windows EC2 , manually specify an AMI map.
*/
export class GenericWindowsImage implements IMachineImage {
constructor(private readonly amiMap: {[region: string]: string}, private readonly props: GenericWindowsImageProps = {}) {
}
public getImage(scope: Construct): MachineImageConfig {
const region = Stack.of(scope).region;
if (Token.isUnresolved(region)) {
throw new Error('Unable to determine AMI from AMI map since stack is region-agnostic');
}
const ami = region !== 'test-region' ? this.amiMap[region] : 'ami-12345';
if (!ami) {
throw new Error(`Unable to find AMI in AMI map: no AMI specified for region '${region}'`);
}
return {
imageId: ami,
userData: this.props.userData ?? UserData.forWindows(),
osType: OperatingSystemType.WINDOWS,
};
}
}
/**
* The OS type of a particular image
*/
export enum OperatingSystemType {
LINUX,
WINDOWS,
/**
* Used when the type of the operating system is not known
* (for example, for imported Auto-Scaling Groups).
*/
UNKNOWN,
}
/**
* A machine image whose AMI ID will be searched using DescribeImages.
*
* The most recent, available, launchable image matching the given filter
* criteria will be used. Looking up AMIs may take a long time; specify
* as many filter criteria as possible to narrow down the search.
*
* The AMI selected will be cached in `cdk.context.json` and the same value
* will be used on future runs. To refresh the AMI lookup, you will have to
* evict the value from the cache using the `cdk context` command. See
* https://docs.aws.amazon.com/cdk/latest/guide/context.html for more information.
*/
export class LookupMachineImage implements IMachineImage {
constructor(private readonly props: LookupMachineImageProps) {
}
public getImage(scope: Construct): MachineImageConfig {
// Need to know 'windows' or not before doing the query to return the right
// osType for the dummy value, so might as well add it to the filter.
const filters: Record<string, string[] | undefined> = {
'name': [this.props.name],
'state': ['available'],
'image-type': ['machine'],
'platform': this.props.windows ? ['windows'] : undefined,
};
Object.assign(filters, this.props.filters);
const value = ContextProvider.getValue(scope, {
provider: cxschema.ContextProvider.AMI_PROVIDER,
props: {
owners: this.props.owners,
filters,
} as cxschema.AmiContextQuery,
dummyValue: 'ami-1234',
}).value as cxapi.AmiContextResponse;
if (typeof value !== 'string') {
throw new Error(`Response to AMI lookup invalid, got: ${value}`);
}
const osType = this.props.windows ? OperatingSystemType.WINDOWS : OperatingSystemType.LINUX;
return {
imageId: value,
osType,
userData: this.props.userData ?? UserData.forOperatingSystem(osType),
};
}
}
/**
* Properties for looking up an image
*/
export interface LookupMachineImageProps {
/**
* Name of the image (may contain wildcards)
*/
readonly name: string;
/**
* Owner account IDs or aliases
*
* @default - All owners
*/
readonly owners?: string[];
/**
* Additional filters on the AMI
*
* @see https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html
* @default - No additional filters
*/
readonly filters?: {[key: string]: string[]};
/**
* Look for Windows images
*
* @default false
*/
readonly windows?: boolean;
/**
* Custom userdata for this image
*
* @default - Empty user data appropriate for the platform type
*/
readonly userData?: UserData;
}