LoginSignup
0
0

More than 5 years have passed since last update.

ElasticBeanstalk Custom Platformで環境が作成できなかったメモ

Last updated at Posted at 2017-04-11

ElasticBeanstalkのCustom Platformを作成しようとして、Custom Platform Builderの環境が作成できないという事象に遭遇した。

原因はおそらくAWSのバグなんだけど、platform.yamlのoption_settingsvalueがbool値になるようなものを設定するとこの事象が発生するらしい。

platform.yaml
option_settings:
  - namespace: aws:elasticbeanstalk:application:environment
    option_name: ERROR_BOOL_VALUE
    value: "false" # これだとダメ(他に "true"/true/false/null でもダメ)
  - namespace: aws:elasticbeanstalk:application:environment
    option_name: VALID_BOOL_VALUE
    value: default # true, false の文字列でなければOK, 空文字("")もOK

これはしんどい。

0
0
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
0
0