Open richid opened 1 year ago
Thanks for this feature request! If you are viewing this issue and would like to indicate your interest, please use the 👍 reaction on the issue description to upvote this issue. We also welcome additional use case descriptions. Thanks again!
Terraform Version
Use Cases
I have been converting some modules from my home-grown E2E testing pattern to using the new
terraform test
framework. It's been great but one issue I'm running into is that there is no ability to set the-parallelism=<N>
flag when using theapply
command. This is generally not a problem but there are certain AWS resources that run into problems when this is not set to 1. Specifically, certain AWS ECS resources as outlined https://github.com/hashicorp/terraform-provider-aws/issues/9777Attempted Solutions
Tried to set the following envvar:
TF_CLI_ARGS_apply="-parallelism=1"
. Confirmed that the-parallelism
argument is not supported by thetest
command.Proposal
Add a
-parallelism=<N>
flag to thetest
command that operates in the same way it does for theapply
command.References
No response