【Error】CloudFormation:: Parameter is non alphaNumeric

現象

以下のCloudFormationテンプレートのパラメーターブロックでParameter is non alphaNumericというエラーが発生した。

---
Parameter:
  MY_MESSAGE: This is test
---

原因

パラメーターブロックでは、記号を使うことができない。そのため、アンダーバーを使うことができない。 そのため、キャメルケースでパラメーターを設定する。

Parameter:
  myMessage: This is test
  # または、MyMessage

参考

CloudFormation Parameter Template Error : Parameter is non alphanumeric