By using AWS re:Post, you agree to the AWS re:Post Terms of Use

Imagebuilder Pipeline Role Download from S3

0

How to allow the ImageBuilder Pipeline to download files from S3 Bucket.

1 Answer
1

Hey,

To allow an AWS Image Builder Pipeline to download files from an S3 bucket, you need to grant the appropriate IAM permissions to the instance profile (role) used by the pipeline.

The following IAM policies must be attached to the IAM role that is associated with the instance profile, in other words, the instance for your pipeline:

  1. Single file: s3:GetObject against the bucket/object (for example, arn:aws:s3:::BucketName/*).
  2. Multiple files: s3:ListBucket against the bucket/object (for example, arn:aws:s3:::BucketName) and s3:GetObject against the bucket/object (for example, arn:aws:s3:::BucketName/*).

This is documented in more detail here

AWS
SUPPORT ENGINEER
answered 10 days ago
profile pictureAWS
EXPERT
reviewed 10 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions