DEV Community

Karthik Sakthivel
Karthik Sakthivel

Posted on

AWS CodePipeline V2 type pipelines introduces pipeline variable check rule

What's new at AWS 📢

✴️ #AWSCodePipeline V2 type pipelines introduces pipeline variable check rule as stage level condition that customers can use to gate the execution in their a pipeline.

✴️Using variable check rule with any condition that is evaluated, Before entering the stage and before exiting a stage.

✴️Even when all actions in the stage have completed successfully, or any action in the stage has failed.

✴️With the variable check rule, customers can evaluate a pipeline parameter or an output variable from a prior action in the pipeline against a threshold, to determine if the condition will succeed or fail.

✴️Pipeline types in CodePipeline:
1️⃣ V1 type pipeline:
〽️ It contains the standard pipeline, stage, and action-level parameters.
〽️ By default, all Pipelines are automatically designated as V1 type pipelines if not specified.
2️⃣ V2 type pipeline:
〽️ It extends the feature of V1 and adds additional configurations sections such as triggers, and variables.

💲 V1 type Pricing key note:
〽️ Charged $1.00 per active pipeline per month
〽️ No charge for pipelines that have no new code changes in month.
〽️ Pipelines are free for the first 30 days since creation date.
〽️ One free active pipeline per month in AWS Free tier only.

💲 V2 type Pricing key note:
〽️ Charged $0.002 per action execution minute
〽️ Manual approval and custom action types are not charged.

📌 Explore more about Variable check rule configuration:
https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials-varcheckrule.html

📌 Explore more about CodePipeline:
https://aws.amazon.com/codepipeline/features/?nc=sn&loc=2

Top comments (0)