0
votes

Has anyone ever tried or have examples of a python based Lambda function where I call a specific codepipeline, but I want to pass it variables in such a way that these variables are used during the Codebuild process?

I typically put in env variables during the codebuild process so I want to affect these.

1

1 Answers

0
votes

Using the start_pipeline_execution call from boto3 (or any other AWS SDK) it is not possible to pass parameters to CodePipeline, because it is not supported by the CodePipeline API. Maybe you will find a workaround here.