我想从 credstash 设置的 Elastic Beanstalk 环境变量存在一些问题。
option_settings:
- namespace: aws:elasticbeanstalk:application:environment
option_name: SECRET_KEY_BASE
value: $(credstash --region eu-west-1 -t credstash get test.secret_key_base)
我已经指定应该从 Python 安装 credstash:
packages:
python:
credstash: []
但是,当我部署资产时,预编译失败(rake assets:precompile
)。
EB 运行状况页面显示应用程序部署失败。
/opt/elasticbeanstalk/support/envvars: line 5: credstash: command not found
...
+ su -s /bin/bash -c 'bundle exec rake assets:precompile' webapp
`/home/webapp` is not a directory.
Bundler will use `/tmp/bundler/home/webapp' as your home directory temporarily.
rake aborted!
ArgumentError: `secret_key_base` for production environment must be a type of String`
secret_key_base
设置为ENV['SECRET_KEY_BASE']
in secrets.yml
,因此它应该包含 credstash 中的值。但是,由于credstash: command not found
输出,我猜 credstash 没有安装或由于某种原因不在路径上。
有谁知道这里会发生什么?