通常時
$ terraform apply
上記と打つと 今回の変更点がピックアップされ 以下のように 反映して良いかを問われます。
...... 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
と打つことで Terraformでの反映が行われ更新がされます
自動承認
ですが、バッチで自動実行したい時とか yes
とうつのは難しいです。
そこで
$ terraform apply -auto-approve
とすることで 即座にアップデートが行われるようになります