4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CloudFormationでUnable to load paramfileエラー

Posted at

最初に

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にしたら解消しました。

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?