はじめに
ymlファイルをCloudFormationでデプロイした時、というエラーが出た。
When yml file is deployed with CloudFormation, bellow error was happened.
ZipFile length cannot exceed 4096 characters. For larger source use S3Bucket/S3Key properties instead.
原因 reason
zip化する際に含まれるコードが4096文字を越えると本エラーに陥る。
This error occurs when the code included in zipping exceeds 4096 characters.
対処 deal
いらないところを削除するなどして、コードをコンパクトにする。
Make the code more compact by deleting unnecessary parts.