aws-cdk-lib#CfnMapping TypeScript Examples
The following examples show how to use
aws-cdk-lib#CfnMapping.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: aws-image-builder.ts From amazon-ec2-image-builder-samples with MIT No Attribution | 4 votes |
constructor(scope: Construct, id: string, props: AWSImageBuilderProps) {
super(scope, id);
//creates a role for Imagebuilder to build EC2 image
const imageBuilderRole = new Role(this, `ImageBuilderRole${props.name}`, {
assumedBy: new ServicePrincipal("ec2.amazonaws.com"),
path: "/executionServiceEC2Role/",
});
const amiTable = new CfnMapping(this, "ami-table", {
mapping: props.parentImage,
});
const parentImageID: string = amiTable.findInMap(
Stack.of(this).region,
"amiID"
);
//creates a the necessary policy for Imagebuilder to build EC2 image
imageBuilderRole.addToPolicy(
new PolicyStatement({
resources: ["*"],
actions: ["s3:PutObject"],
})
);
//Adds SSM Managed policy to role
imageBuilderRole.addManagedPolicy(
ManagedPolicy.fromAwsManagedPolicyName("AmazonSSMManagedInstanceCore")
);
//Adds EC2InstanceProfileForImageBuilder policy to role
imageBuilderRole.addManagedPolicy(
ManagedPolicy.fromAwsManagedPolicyName(
"EC2InstanceProfileForImageBuilder"
)
);
//Builds the instance Profile to be attached to EC2 instance created during image building
const instanceProfile = new CfnInstanceProfile(
this,
`imageBuilderProfile${props.name}`,
{
roles: [imageBuilderRole.roleName],
instanceProfileName: `${props.instanceProfileName}-${Aws.REGION}`,
}
);
const notificationTopic = new Topic(
this,
"ImgBuilderNotificationTopic",
{}
);
//Manage Infrastructure configurations
const cfnInfrastructureConfiguration = new CfnInfrastructureConfiguration(
this,
`cfnInfrastructureConfiguration${props.name}`,
{
name: "infraConfiguration",
instanceProfileName: `${props.instanceProfileName}-${Aws.REGION}`,
instanceTypes: instanceTypes,
subnetId: props.subnetId,
securityGroupIds: [props.imageBuilderSG.securityGroupId],
snsTopicArn: notificationTopic.topicArn,
}
);
const componentArn = props.imageBuilderComponentList.map(
(componentList) => ({
componentArn: new CfnComponent(this, `${componentList.name}`, {
name: `${componentList.name}`,
platform: os_types.LINUX,
version: props.version,
data: `${componentList.data}`,
}).attrArn,
})
);
const cfnImageRecipe = new CfnImageRecipe(
this,
`cfnImageRecipe${props.name}`,
{
name: props.cfnImageRecipeName,
version: props.version,
parentImage: parentImageID,
components: componentArn,
}
);
const cfnImageBuilderPipeline = new CfnImagePipeline(
this,
`imageBuilderPipeline${props.name}`,
{
name: `imageBuilderPipeline${props.name}`,
infrastructureConfigurationArn: cfnInfrastructureConfiguration.attrArn,
imageRecipeArn: cfnImageRecipe.attrArn,
}
);
const imagebuilderCr = new PythonFunction(this, "imagebuilderCr", {
entry: "lib/lambda/imagebuilder",
runtime: Runtime.PYTHON_3_8,
index: "app.py",
handler: "lambda_handler",
environment: {
IMAGE_SSM_NAME: props.amiIdLocation.parameterName,
},
timeout: Duration.seconds(45),
initialPolicy: [
new PolicyStatement({
effect: Effect.ALLOW,
actions: ["imagebuilder:StartImagePipelineExecution"],
resources: [
`arn:aws:imagebuilder:${Stack.of(this).region}:${
Stack.of(this).account
}:image/*`,
`arn:aws:imagebuilder:${Stack.of(this).region}:${
Stack.of(this).account
}:image-pipeline/*`,
],
}),
],
});
imagebuilderCr.node.addDependency(cfnImageBuilderPipeline);
const pipelineTriggerCrProvider = new cr.Provider(
this,
"pipelineTriggerCrProvider",
{
onEventHandler: imagebuilderCr,
logRetention: RetentionDays.ONE_DAY,
}
);
new CustomResource(this, id, {
serviceToken: pipelineTriggerCrProvider.serviceToken,
properties: {
PIIPELINE_ARN: `arn:aws:imagebuilder:${Stack.of(this).region}:${
Stack.of(this).account
}:image-pipeline/${cfnImageBuilderPipeline.name.toLowerCase()}`,
},
});
const amiIdRecorder = new PythonFunction(this, "imageRecorder", {
entry: "lib/lambda/recorder",
runtime: Runtime.PYTHON_3_8,
index: "app.py",
handler: "lambda_handler",
environment: {
IMAGE_SSM_NAME: props.amiIdLocation.parameterName,
},
});
props.amiIdLocation.grantRead(amiIdRecorder);
props.amiIdLocation.grantWrite(amiIdRecorder);
notificationTopic.addSubscription(new LambdaSubscription(amiIdRecorder));
this.subscribeEmails(notificationTopic);
cfnInfrastructureConfiguration.addDependsOn(instanceProfile);
cfnImageBuilderPipeline.addDependsOn(cfnInfrastructureConfiguration);
}