Back to Terragrunt

Queue Exclude Dir

docs/src/data/flags/queue-exclude-dir.mdx

1.0.3432 B
Original Source

import { Aside } from '@astrojs/starlight/components';

<Aside type="tip" title="Alias for --filter">

This flag is an alias for the --filter flag.

When using this flag, the equivalent filter expression is used instead.

e.g.

bash
terragrunt run --all --queue-exclude-dir "prod/**" -- plan

is equivalent to:

bash
terragrunt run --all --filter "!{./prod/**}" -- plan
</Aside>