Yoriyasu Yano

Results 148 comments of Yoriyasu Yano

Note that for whoever is trying to implement this, you will run into issues where the `stdin` and `stdout` is interleaved across concurrent terraform runs. This will lead to a...

Hi, it will be hard to debug this without access to the code. Is there any way you can create a minimum reproducible gist? Alternatively, you can try running with...

Thanks for sharing the code. I see a few potential issues that may or may not be related: 1. Since you aren't using [the generate attribute](https://terragrunt.gruntwork.io/docs/reference/config-blocks-and-attributes/#remote_state), the backend configuration in...

Thanks for your effort in improving our CI/CD flow! You bring up a lot of good points. Here are a few top level comments that come to mind: - Regarding...

One workaround I just came up with is to use `generate` blocks to dynamically create the single resource module. The following should work on any modern terragrunt version that supports...

Unfortunately there is no workaround for this, and this is one of the warnings we provide for using `plan-all`/`run-all plan` on a daily basis (see the callout in https://terragrunt.gruntwork.io/docs/reference/cli-options/#run-all). Using...

Are you using any of the following in the terragrunt `source`? - Local references (e.g `source = ../module`) - Remote references with no ref tag - Remote references with a...

This is because terraform isn't really designed to handle multiple concurrent calls to the binary at once. This leads to issues when all the terraform processes are trying to initialize...

If there is a way to implement `--terragrunt-init-parallelism` without overcomplicating the pipeline, then that could work. With that said, it could be confusing to have multiple `parallelism` flags in that...

@brikis98 I believe this is ready to merge now, but quick sanity check. When we first visited this idea, you had some reservations in https://github.com/gruntwork-io/terragrunt/issues/752#issuecomment-503168675. I have an answer to...