fix(test): fix terraform ~> 1.3 resolution (#3233)

* fix(test): fix terraform ~> 1.3 resolution

* Update terraform_client_test.go
This commit is contained in:
nitrocode
2023-03-15 15:06:37 -05:00
committed by GitHub
parent 92a3d9b92c
commit 330ee04e66

View File

@@ -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 {