LoginSignup
8

More than 5 years have passed since last update.

Terraformを用いたネットワーク構築・インストールと基本使い方

Last updated at Posted at 2015-12-31

概要

  • Terraformのインストール / 基本の使い方(VPC + subnet作成)までを書きます。
mkdir ~/install
cd ~/install/

# Mac用はダウンロード用URLが異なるので注意
wget https://releases.hashicorp.com/terraform/0.8.1/terraform_0.8.1_linux_amd64.zip
unzip terraform_0.8.1_linux_amd64.zip
sudo mv * /usr/bin/

# 確認
$ which terraform
/usr/bin/terraform

$ terraform -v
Terraform v0.6.8

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
8