AWS CodePipeline with YAML

YAML parameters for AWS CodePipeline

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Must be set to CODE_PIPELINE.
code_pipeline_name RequiredStringThe name of the AWS CodePipeline pipeline triggered by the action.
region RequiredStringThe Amazon region.
integration RequiredStringThe ID of the integration.
wait_for_completeBooleanIf set to true, the action will wait for the CodePipeline to finish.

YAML example for AWS CodePipeline

yaml
actions: - action: "Trigger AWS CodePipeline" type: "CODE_PIPELINE" region: "us-west-2" code_pipeline_name: "my_codepipeline_name" integration: "my_integration"

Last modified on Sep 24, 2024