delightful-addition-54721
04/08/2026, 10:27 AMswift-furniture-85673
04/08/2026, 5:08 PMinfracost generate config --template-path=infracost.yml.tmpl > infracost.yml
infracost breakdown --config-file=infracost.yml
Until it comes out looking rightdelightful-addition-54721
04/09/2026, 9:02 AM├── foo/
│ └── main.tf
└── bar/
├── dev/
│ └── main.tf
└── prod/
└── main.tf
The following range in a template:
// Match a nested folder if it exists
{{- range $match := matchPaths ":app/:env?/main.tf" }}
Will loop over: [{app: foo}, {app: bar, env: dev}, {app: bar, env: prod}]
This does not find any projects.