Modules affected
test-structure
Description
- Don't run validate tests in parallel. Terraform validate makes use of several terraform providers to ensure the target config is correct. Running these in parallel is extremely resource intensive and leads to CI jobs running out of memory and getting stuck as a result. This change removes the call to
t.Parallel
within theValidateAllTerraformModules
method to prevent resource exhaustion.