Why does terraform-update-variable
default to skipping CI?
#200
-
Specifically, the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This script predates the
With |
Beta Was this translation helpful? Give feedback.
This script predates the
ecs-deploy-runner
pipeline scripts, and thus the script defaults are currently optimized for and adapted to a workflow that predates the pipeline scripts. In this flow, the intended workflow for deploying a new image version was:terraform-update-variable
to update the image tag to the new version in the relevantterragrunt.hcl
scriptterragrunt apply
terragrunt apply
call.With
ecs-deploy-runner
, the intention is to run the script with--skip-ci-flag ""
so that the skip ci flag is not injected into the commit and the maininfrastructur…