Skip to content

Commit 8e77406

Browse files
author
Cameron Magee
committed
docs: additional updates to README
1 parent 2e141e2 commit 8e77406

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This construct creates the required infrastructure for an Image Pipeline:
1616

1717
- 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.
1818

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.
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. Support for multiple components.
2020

2121
- Image Builder image pipelines provide an automation framework for creating and maintaining custom AMIs and container images.
2222

@@ -57,6 +57,7 @@ new ImagePipeline(this, "MyImagePipeline", {
5757
pipelineName: 'MyImagePipeline',
5858
parentImage: 'ami-0e1d30f2c40c4c701'
5959
})
60+
// ...
6061
```
6162
6263
By default, the infrastructure configuration will deploy EC2 instances for the build/test phases into a default VPC using the default security group. If you want to control where the instances are launched, you can specify an existing VPC `SubnetID` and a list of `SecurityGroupIds`. In the example below, a new VPC is created and referenced in the `ImagePipeline` construct object.
@@ -107,6 +108,7 @@ new ImagePipeline(this, "MyImagePipeline", {
107108
securityGroups: [sg.securityGroupId],
108109
subnetId: private_subnet[0].subnetId,
109110
})
111+
// ...
110112
```
111113
112114
Python usage:

0 commit comments

Comments
 (0)