Terraform入門 – 1. 安裝Terraform

teachmyself發表於2019-02-18

你機器上必須要先安裝Terraform。Terraform為所有平臺和架構釋出的版本為二進位制包。本頁面不包含如何從原始碼編譯Terraform,對於確定希望從原始碼編譯出自己相信的最終二進位制檔案的使用者可以參考文件

安裝Terraform

安裝Terraform,找到與你係統匹配的軟體包然後下載。Terraform被打包為一個zip歸檔檔案。

下載完zip檔案以後,解壓這個包。Terraform是一個名為terraform的獨立檔案。包裡其他所有的檔案都可以安全刪掉,Terraform依然可以正常工作。

最後一步確保terraform二進位制檔案在PATH上可用。在Linux和Mac上設定PATH請檢視此頁面。Windows設定PATH的命令在此頁面

校驗安裝

Terraform安裝完以後,確認該安裝在新開的終端中可執行,並檢驗terraform可用。通過執行terraform你將看到類似如下的輸出的幫助資訊:

$ terraform
Usage: terraform [--version] [--help] <command> [args]

The available commands for execution are listed below.
The most common, useful commands are shown first, followed by
less common or more advanced commands. If you`re just getting
started with Terraform, stick with the common commands. For the
other commands, please read the help and docs before usage.

Common commands:
    apply              Builds or changes infrastructure
    console            Interactive console for Terraform interpolations
# ...

如果你遇到一個terraform 未找到的錯誤,(因為)你的PATH環境變數沒有設定正確。請回去檢查確保你的PATH環境變數包含你terraform的安裝目錄。

下一步

到了使用最小化Terraform配置檔案構建基礎設施的時間了。在你部署它到AWS之前可以檢查執行計劃。

<!– more –>

<!–//
硬啃官方文件產物,若有不妥之處,歡迎指正,請以官方文件為準!
//–>

相關文章