#author(“2017-10-10T07:57:12+00:00”,“default:kazuma”,“kazuma”) Terraform
概要 [#w5a0ec33]
terraformのコマンドの使い方です。
インスタンスへ設定変更を適用 [#sd1a7f76]
Dryrun [#cb2e4428]
terraform plan
適用 [#g68c6364]
terraform apply
インスタンスの削除 [#v0bc15da]
事前の確認 [#ycc56d76]
terraform plan -destroy -out=./terraform.tfplan
確認して実行 [#r4c47813]
terraform destroy -target='module.hoge'
Enter Value: <- yesを入力すると実行される。そのままenterを押下しても実行されない。
実行 [#d0673d69]
terraform apply ./terraform.tfplan
状態確認 [#j648aa07]
terraform show