haihai Blog

Homebrew でインストールした Terraform をアップデートする

2024-04-20

はじめに

brew install terraform でインストールした terraform をアンインストールし、 HashiCorp 社の terraform に変更します。

バージョン確認、アンインストール

brew install terraform でインストールした terraform のバージョンは v1.5.7 でした。
最新版の 1.8.1 へアップデート可能とメッセージが表示されています。

> terraform --version
Terraform v1.5.7
on darwin_arm64

Your version of Terraform is out of date! The latest version
is 1.8.1. You can update by downloading from https://www.terraform.io/downloads.html

brew uninstall terraform でアンインストールし、brew cleanup でキャッシュをクリアします。

# アンインストール
brew uninstall terraform
# Uninstalling /opt/homebrew/Cellar/terraform/1.5.7... (6 files, 69.7MB)

# キャッシュクリア
brew cleanup

HashiCorp 社の Terraform をインストールする

brew tap コマンドで HashiCorp 社のリポジトリを登録します。

# HashiCorp (サードパーティ)リポジトリの追加
brew tap hashicorp/tap

hashicorp/tap/terraform を指定し、 HashiCorp 社のリポジトリからインストールします。

# HashiCorp リポジトリから terraform をインストール
brew install hashicorp/tap/terraform

再度バージョンを確認すると、 v1.5.7 -> v1.8.1 となり、最新版がインストールされていることが確認できました。

> terraform --version
Terraform v1.8.1
on darwin_arm64

参考 URL