Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request. Searching for pre-existing feature requests helps us consolidate datapoints for identical requirements into a single place, thank you!
- Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.
- If you are interested in working on this issue or have submitted a pull request, please leave a comment.
Describe the user story
When using a plugin cache, doing parallel inits, which download or upgrade plugins, leads to errors.
Describe the solution you'd like
It's a known issue that running terraform init in parallel leads to errors. The only clean solution is to disable parallel plans with parallel_plan set to false. But the issue is with init, not with plan, so, without being necessary, we also disable the parallel plans.
Describe the drawbacks of your solution
Parallel plans with sequential inits may cause the same errors.
Describe alternatives you've considered
I am currently setting parallel_plan to false.
Community Note
Describe the user story
When using a plugin cache, doing parallel inits, which download or upgrade plugins, leads to errors.
Describe the solution you'd like
It's a known issue that running
terraform initin parallel leads to errors. The only clean solution is to disable parallel plans withparallel_planset tofalse. But the issue is withinit, not withplan, so, without being necessary, we also disable the parallel plans.Describe the drawbacks of your solution
Parallel plans with sequential inits may cause the same errors.
Describe alternatives you've considered
I am currently setting
parallel_plantofalse.