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?

PulumiとTerraformのコマンド比較

Posted at

PulumiとTerraformのコマンド比較

Infrastructure as Code(IaC)ツールとして人気のあるPulumiとTerraformのコマンド比較表を作成しました。
どちらかというと、Pulumiは馴染みのないIaCかと思います。
最近になって、初めて利用する機会があり、有名どころのTerraformと比較してみました。

コマンド比較表

操作 Pulumi Terraform 説明
初期化 pulumi new [テンプレート] terraform init プロジェクトの初期化
プラン確認 pulumi preview terraform plan 変更内容のプレビュー
デプロイ pulumi up terraform apply リソースのデプロイ/更新
削除 pulumi destroy terraform destroy リソースの削除
状態確認 pulumi stack terraform state list 管理されているリソースの一覧表示
出力確認 pulumi stack output terraform output 出力変数の表示

言語とシンタックスの違い

Terraformは独自のHCL(HashiCorp Configuration Language)を使用するのに対し、Pulumiは一般的なプログラミング言語(TypeScript、JavaScript、Python、Go、.NET)を使用できます。

Terraform (HCL)

resource "aws_s3_bucket" "example" {
  bucket = "my-bucket"
  acl    = "private"
  
  tags = {
    Name        = "My bucket"
    Environment = "Dev"
  }
}

Pulumi (TypeScript)

import * as aws from "@pulumi/aws";

const bucket = new aws.s3.Bucket("example", {
    bucket: "my-bucket",
    acl: "private",
    tags: {
        Name: "My bucket",
        Environment: "Dev",
    },
});
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?