isshesure
isshesure

Reputation: 223

Pass parameters from AWS lambda to AWS CodePipeline

I have a lambda that is initiating a CodePipeline execution via the AWS SDK startPipelineExecution function. Is there any mechanism available to pass a parameter to the CodePipeline build so that it may use the value within the CodeBuild build as an environment variable?

Upvotes: 4

Views: 3057

Answers (1)

berenbums
berenbums

Reputation: 1354

Update: The startPipelineExecution action now accepts a list of variables to override pipeline variables for a new execution.


Original answer: Currently CodePipeline does not provide any functionality for passing parameters into the Source Stage. Depending on the CodePipeline setup, I would look into one of the following:

  1. From your Lambda function, save the parameter to Amazon Systems Manager - Parameter Store and use CodeBuilds built-in approach to retrieve it during runtime. Buildspec:
    env:
      parameter-store:
        key: "value"
  1. Instead of calling the CodePipeline directly, upload a file with all your parameters to an S3 bucket. Then set S3 as Source Action Provider, so the CodePipeline is triggered when the file is updated. This way you can pass the file as artifact to your CodeBuild project and use it there.
  2. If you can redesign your flow to trigger CodeBuild directly from Lambda, it would be possible to call startBuild using the environment-variables-override flag.

Upvotes: 6

Related Questions