You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-9Lines changed: 32 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ This construct creates the required infrastructure for an Image Pipeline:
16
16
17
17
- An EC2 Image Builder recipe defines the base image to use as your starting point to create a new image, along with the set of components that you add to customize your image and verify that everything is working as expected.
18
18
19
-
- Image Builder uses the AWS Task Orchestrator and Executor (AWSTOE) component management application to orchestrate complex workflows. AWSTOE components are based on YAML documents that define the scripts to customize or test your image
19
+
- Image Builder uses the AWS Task Orchestrator and Executor (AWSTOE) component management application to orchestrate complex workflows. AWSTOE components are based on YAML documents that define the scripts to customize or test your image. This construct supports single or multiple components.
20
20
21
21
- Image Builder image pipelines provide an automation framework for creating and maintaining custom AMIs and container images.
22
22
@@ -47,8 +47,10 @@ import { Construct } from 'constructs';
47
47
// ...
48
48
// Create a new image pipeline with the required properties
To specify multiple components, add additional component documents to the `componentDoucments` property. You can also add the names and versions of these components via the `componentNames` and `componentVersions` properties (_See usage examples above_). The components will be associated to the Image Recipe that gets created as part of the construct.
225
+
226
+
Be sure to update the `imageRecipeVersion` property when making updates to your components after your initial deployment.
227
+
228
+
### SNS Encryption using KMS
229
+
230
+
---
231
+
232
+
Specify an alias via the `kmsKeyAlias` property which will be used to encrypt the SNS topic.
0 commit comments