You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terraform version constraint is not being fully respected when specifically attempting to run 13.5. The following version constraint is being set and seems to be working as expected locally, but atlantis continues to fall back to default tf version.
required_version = ">= 0.13.5, < 0.14.0"
I believe there was a recent patch made due to a similar issue with version constraints running 0.13.0+ so maybe this corner case got missed.
The workaround is to simply specify the version explicitly, such as required_version = 0.13.5. Not sure if impacting 0.14.0+ versions or not. I will poke around the code a bit more when i get some time incase I can find anything and submit a PR. If I am misunderstanding something feel free to let me know! Thanks!
The text was updated successfully, but these errors were encountered:
Terraform version constraint is not being fully respected when specifically attempting to run
13.5
. The following version constraint is being set and seems to be working as expected locally, but atlantis continues to fall back to default tf version.required_version = ">= 0.13.5, < 0.14.0"
I believe there was a recent patch made due to a similar issue with version constraints running 0.13.0+ so maybe this corner case got missed.
The workaround is to simply specify the version explicitly, such as
required_version = 0.13.5
. Not sure if impacting 0.14.0+ versions or not. I will poke around the code a bit more when i get some time incase I can find anything and submit a PR. If I am misunderstanding something feel free to let me know! Thanks!The text was updated successfully, but these errors were encountered: