Skip to content

Commit

Permalink
fix(test): fix terraform ~> 1.3 resolution (runatlantis#3233)
Browse files Browse the repository at this point in the history
* fix(test): fix terraform ~> 1.3 resolution

* Update terraform_client_test.go
  • Loading branch information
nitrocode authored Mar 15, 2023
1 parent 92a3d9b commit 330ee04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/core/terraform/terraform_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@ terraform {
"= 1.0": "1.0.0",
"< 1.0": "0.15.5",
"<= 1.0": "1.0.0",
"~> 1.3": "1.3.9",
// cannot use ~> 1.3 or ~> 1.0 since that is a moving target since it will always
// resolve to the latest terraform 1.x
"~> 1.3.0": "1.3.9",
}

type testCase struct {
Expand Down

0 comments on commit 330ee04

Please sign in to comment.