2
votes

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

1 Answers

4
votes

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.