在.ebextensions
的配置文件中,我可以为参数指定以下配置:
Parameters:
Foo:
NoEcho: false
Type: String
Description: The value I wish to set.
ConstraintDescription: Some value
但是......当我尝试用eb create
部署它时,亚马逊将会失败:
ERROR: "option_settings" in one of the configuration files failed validation. More details to follow.
ERROR: Missing value for required parameter: AWSESDomain
ERROR: Failed to launch environment.
从挖掘ebcli github并查看简单的Elastic Beanstalk部署模板,它在部署eb create --database
时使用此类参数作为RDS用户名和密码,但我无法弄清楚我如何从配置文件中设置它们。
如何在.ebextensions
?