tfutils / tfenv

Terraform version manager
MIT License
4.5k stars 454 forks source link

feat: using `tfenv pin` to pin the current tf version to `.terraform-version` #267

Closed nitrocode closed 3 years ago

nitrocode commented 3 years ago

when I run this

tfenv install latest:^0.14
tfenv use latest:^0.14
terraform version

I'm using the latest terraform version but I'd also like to pin down this version to a file using a command like this

At the moment, I use this in an alias

alias tfenv-pin="tfenv list | grep '^*' | cut -d' ' -f2 > .terraform-version && cat .terraform-version"