4

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?

1 Answer 1

6

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.
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.