mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06:00
985b414dca
Now that we're verifying the Terraform version during state loading, we need to force a particular Terraform version to use during these tests.
13 lines
241 B
Go
13 lines
241 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/version"
|
|
)
|
|
|
|
// The git commit that was compiled. This will be filled in by the compiler.
|
|
var GitCommit string
|
|
|
|
var Version = version.Version
|
|
|
|
var VersionPrerelease = version.Prerelease
|