ForgeVision Engineer Blog

フォージビジョン エンジニア ブログ

AWS CloudShell で Terraform を実行してみた!

こんばんわ、コバケンです。
本記事は、ForgeVision Advent Calendar 16日目の記事です♪

本日深夜、Werner Vogels Keynote で待望の新サービス AWS CloudShell が発表されました。
CloudShell というサービスですが、実はさまざまなクラウドサービスでリリースされており、 Azure、GCP、Alibaba、Oracleなどのサービスでも提供されています。それだけ期待のサービス!!

どんなサービス

AWS マネジメントコンソール上でシェルの実行環境が利用可能となりました。
今までは、ローカルからターミナルソフトやVScodeを利用して、シェルの実行を行っておりましたが、 AWS マネジメントコンソールから簡単に実行できます!

AWS CloudShell で Terraform を実行してみた

とりあえず、CloudShell 上に Terraform をインストールして、EC2 インスタンスを作成してみます。
アクセスキーが不要で、実行可能!!

  • Terraform インストール
$ wget https://releases.hashicorp.com/terraform/0.14.2/terraform_0.14.2_linux_amd64.zip
$ sudo unzip terraform_0.14.2_linux_amd64.zip -d /usr/local/bin/
  • Terraform バージョン確認
$ terraform --version
Terraform v0.14.2
  • main.tf
provider "aws" {
  version = ">=2.70"
  region  = "ap-northeast-1"
}

module "ec2_cluster" {
  source                 = "terraform-aws-modules/ec2-instance/aws"
  version                = "~> 2.0"

  name                   = "my-cluster"
  instance_count         = 1

  ami                    = "ami-00f045aed21a55240"
  instance_type          = "t2.micro"
  key_name               = "xxxxxxxx-key"
  monitoring             = true
  vpc_security_group_ids = ["sg-xxxxxxxxxxxxxxxx"]
  subnet_id              = "subnet-xxxxxxxxxxxxxxxx"

  tags = {
    Terraform   = "true"
    Environment = "dev"
  }
}
  • 初期化
$ terraform init
Initializing modules...

Initializing the backend...

Initializing provider plugins...
- Reusing previous version of hashicorp/aws from the dependency lock file
- Installing hashicorp/aws v3.21.0...
- Installed hashicorp/aws v3.21.0 (signed by HashiCorp)

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
  • Terraform 確認
$ terraform plan

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # module.ec2_cluster.aws_instance.this[0] will be created
  + resource "aws_instance" "this" {
      + ami                          = "ami-00f045aed21a55240"
      + arn                          = (known after apply)
      + associate_public_ip_address  = (known after apply)
      + availability_zone            = (known after apply)
〜(省略)〜
  • Terraform 実行
$ terraform apply

〜(省略)〜

Plan: 1 to add, 0 to change, 0 to destroy.

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

module.ec2_cluster.aws_instance.this[0]: Creating...
module.ec2_cluster.aws_instance.this[0]: Still creating... [10s elapsed]
module.ec2_cluster.aws_instance.this[0]: Still creating... [20s elapsed]
module.ec2_cluster.aws_instance.this[0]: Creation complete after 22s [id=i-0c08901ef15afc441]

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
  • Terraform 実行結果

  • 作成された EC2 を確認

  • 削除

$ terraform destroy

〜(省略)〜

Plan: 0 to add, 0 to change, 1 to destroy.

Do you really want to destroy all resources?
  Terraform will destroy all your managed infrastructure, as shown above.
  There is no undo. Only 'yes' will be accepted to confirm.

  Enter a value: yes

module.ec2_cluster.aws_instance.this[0]: Destroying... [id=i-0c08901ef15afc441]
module.ec2_cluster.aws_instance.this[0]: Still destroying... [id=i-0c08901ef15afc441, 10s elapsed]
module.ec2_cluster.aws_instance.this[0]: Still destroying... [id=i-0c08901ef15afc441, 20s elapsed]
module.ec2_cluster.aws_instance.this[0]: Still destroying... [id=i-0c08901ef15afc441, 30s elapsed]
module.ec2_cluster.aws_instance.this[0]: Destruction complete after 40s

Destroy complete! Resources: 1 destroyed.

さいごに

Terraform の実行環境ですが、どこで実行するのかが悩ましかったのですが、これで解決できそうです!!
Terraform Cloud、ローカル、踏み台、Cloud9 とありましたが、これからは AWS CloudShell を使っていこうかなと思います!!
※ 無料ストレージが1GBまでなので、大きい構成の場合できないかも。。