I've got a repository with multiple environments structured like this:
terraform/environments/dev
terraform/environments/test
terraform/environments/prod
Each environment uses only the default workspace.
When I enable parallel_plan: true, this breaks Atlantis' ability to run plans in parallel as expected, with the error saying The default workspace is currently locked by another command that is running for this pull request.
Atlantis shouldn't behave this way because each environment is separate and each plan lock is based on the directory: "msg": "acquired lock with id \"terraform/environments/production/default\"",. A lock with ID terraform/environments/production/default shouldn't block Atlantis from simultaneously using another lock with ID terraform/environments/test/default.
I've got a repository with multiple environments structured like this:
Each environment uses only the default workspace.
When I enable
parallel_plan: true, this breaks Atlantis' ability to run plans in parallel as expected, with the error sayingThe default workspace is currently locked by another command that is running for this pull request.Atlantis shouldn't behave this way because each environment is separate and each plan lock is based on the directory:
"msg": "acquired lock with id \"terraform/environments/production/default\"",. A lock with IDterraform/environments/production/defaultshouldn't block Atlantis from simultaneously using another lock with IDterraform/environments/test/default.