【Terraform】planの結果をファイルに保存するときにエスケープシーケンス(カラー)を消すterraform planの結果のエスケープシーケンス terraform planの結果をファイルへ保存するとエスケープシーケンスが残ってしまう。
$ terraform plan > plan.txt $ less plan ESC[0mESC[1mdata.aws_iam_policy_document.instance_profile_assume_role: Reading...ESC[0mESC[0m ESC[0mESC[1mdata.aws_iam_policy_document.instance_profile_assume_role: Read complete after 0s [id=1903849331]ESC[0m Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: ESC[32m+ESC[0m create ESC[0m Terraform will perform the following actions: . . . terraform plan -no-colorでエスケープシーケンスを消す -no-colorオプションを付加するとエスケープシーケンスが消える。