Introduction to Terraform Version Management Tool tfenv [macOS Edition]
I’ve installed and started using the Terraform version management tool tfenv on macOS, so I’ll introduce it.
As I’m working across multiple development projects, I wanted to manage and use multiple versions of Terraform.
Since tfenv can manage Terraform versions, I’ll introduce the steps from installing it on macOS to starting to use it.
brew uninstall terraform
brew install tfenv
tfenv install latest
Use the installed latest version of terraform.
$ tfenv use
Switching default version to v0.13.5
Switching completed
tfenv install 0.13.4
$ tfenv list
* 0.13.5 (set by /usr/local/Cellar/tfenv/2.0.0/version)
0.13.4
That’s all from the Gemba.