LoginSignup
24
13

More than 5 years have passed since last update.

Terraformのresource名を変更

Last updated at Posted at 2017-10-07

Terraformのresource名を変更

Terraform v0.10.7でのやり方を簡単にご紹介。

terraform.tfstateを直接編集行するよりも安全かつ正しい手順のようです。

hogeをfugaに変更したいとき。

1 .tfを編集

resource "aws_instance" "hoge" {
}

resource "aws_instance" "fuga" {
}

2 terraform state mv

$ terraform state mv aws_instance.hoge aws_instance.fuga

3 terraform plan

$ terraform plan

差分がなければ :ok:

参考

24
13
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
24
13