-
Is there a supported way of skipping Gruntwork Pipeline runs to a specific account, folder, or module? For example if I add an account that I want to manage outside of pipelines it will try to run and error out since the new account has no ECS Deploy Runner. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you're using the default setup you should have a script located at
For example, you might add the following elif statement to prevent running plan and apply on any folders including
|
Beta Was this translation helpful? Give feedback.
If you're using the default setup you should have a script located at
_ci/scripts/deploy-infra.sh
It's responsible for detecting changes and deciding which deployer commands to run. You should be able to add a new condition to theroute
function to skip specific modules. By default this feature is used to exclude theecs-deploy-runner
from updating itself as shown below: