Yoriyasu Yano
Yoriyasu Yano
[terratest_log_parser](https://terratest.gruntwork.io/docs/testing-best-practices/debugging-interleaved-test-output/) generates a junit xml report which many CI systems will automatically render for you. If you don't have anything handy, you can use something like https://gitlab.com/inorton/junit2html
I think you can go for it.
I suspect that if one is sensitive to the order of how the varfile and vars are passed in, it makes more sense to manually construct the list of args...
We currently don't support a way to suppress them in a nice way, as these functions are logging from the `Logf` function directly in the `logger` package, and not using...
Based on the error message, it looks like you aren't setting up the kubeconfig file `/var/folders/x5/6kdvnqkx2jxdhzj9344l555m0000gn/T/TestTerraform/terraform/terraform/kubeconfig` with the context to access the GKE cluster. You need to generate this file...
I'm not sure why the validation fails, but in any case, I would remove the `validation` call there. It is superfluous as `type = bool` already coerces the input into...
Not sure yet about `terraform-exec`, but we should definitely use [terraform-json](https://github.com/hashicorp/terraform-json). In fact, I think this may replace https://github.com/gruntwork-io/terratest/pull/484
This seems reasonable. I think one approach we can take is to use [a similar function we defined in kubergrunt](https://github.com/gruntwork-io/kubergrunt/blob/b696756da9e41b96770ff2edbfbad68f0a745872/kubectl/config.go#L155) to manage the auth flow, although I am not 100%...
> Would it make sense to be able to suppress logging the command being executed with a single SensitiveVars boolean flag? FWIW, we have this functionality built in `gruntwork-cli`. Probably...
Another option here is to fix `docker.Run` to support setting environment variables on the shell runtime. That way, you can use the "inherit from runtime env var" feature to set...