最初に
AWS CliでCloudFormationのスタックを作成しようとしたときにエラーが発生したのでメモ。
実行したコマンド
aws cloudformation update-stack --stack-name XXXXXXXXXXX --template-body file://XXXXXXXXX.yaml
エラー内容
Error parsing parameter '--template-body': Unable to load paramfile (XXXXXXXXX.yaml), text contents could not be decoded. If this is a binary
結論
ファイルの文字コードが原因。
テンプレートファイルのyamlにコメントで日本語を記載していた。ファイルの文字コードがUTF-8になっていた。
ファイルの文字コードをSJISにしたら解消しました。