0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

🚀 MacにTerraformをインストール

Last updated at Posted at 2025-01-26

🌍 Terraformとは

Terraform(テラフォーム)は、HashiCorp社が提供するオープンソースの「Infrastructure as Code(IaC)」ツールです。

これにより、クラウドやオンプレミスのインフラストラクチャをコードで定義・管理し、自動化することができます。

同じようなツールに AWS CloudFormation がありますが、Terraform は AWS だけでなく Azure や GCP などのマルチクラウドに対応しているためか、採用媒体を眺めていると Terraform 主流になっているよに感じています。

⏳ Homebrewをインストール

TerraformをインストールするにはHomebrewが必要です

以下のコマンドでインストール情報を確認します。

brew --version

もしインストールされていない場合には以下を参照しインストールします。

📦 インストール手順

Homebrewをアップデート
brew update
HashiCorpリポジトリを追加
brew tap hashicorp/tap
インストール
brew install hashicorp/tap/terraform

✅ インストールの確認

インストールができたか確認してみましょう!

terraform version

以下のようにバージョン情報が表示されたら成功です🎉

Terraform v1.10.4
on darwin_arm64
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?