mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
36b8be43e8
Update all references to the version values to use the new package. The VersionString function was left in the terraform package specifically for the aws provider, which is vendored. We can remove that last call once the provider is updated.
11 lines
192 B
Go
11 lines
192 B
Go
package terraform
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/version"
|
|
)
|
|
|
|
// TODO: update providers to use the version package directly
|
|
func VersionString() string {
|
|
return version.String()
|
|
}
|