Back to Terragrunt

excludes-file.txt

docs/src/data/flags/queue-excludes-file.mdx

1.0.3633 B
Original Source

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

<Aside type="tip" title="Alias for --filters-file">

This flag leverages the same underlying functionality as the --filters-file flag.

When using this flag, the .terragrunt-excludes file will be parsed, and converted to the equivalent filter expressions.

e.g.

text
# excludes-file.txt
prod
bash
terragrunt run --all --queue-excludes-file ./excludes-file.txt -- plan

is equivalent to:

text
# filters-file.txt
!{./prod}
bash
terragrunt run --all --filters-file ./filters-file.txt -- plan
</Aside>