我使用AWS Web Console设置了弹性beanstalk应用程序和环境。一切都运作良好,并根据需要。现在我们想要获取此环境的所有配置,以便我们可以再次设置此环境,可能使用EB CLI进行维护和部署(我们希望转换到其他AWS账户并在那里进行克隆)。我使用EB CLI尝试了eb config get
,但是我收到了错误
git:(master) ✗ eb config get our-env-test ERROR: Elastic Beanstalk could not find any saved configuration with the name "our-env-test".
答案 0 :(得分:1)
看起来我应该使用命令eb config list
返回的配置名称,而不是环境名称。例如,在我的情况下,环境名称为our-env-test
。所以当我运行命令eb config list
时,我会回来our-env-test-config
。现在,当我运行命令eb config get our-env-test-config
>> eb config get our-env-test-config
Configuration saved at: /Users/me/our-env/.elasticbeanstalk/saved_configs/our-env-test-config.cfg.yml
生成的配置文件存储在.elasticbeanstalk
目录中
注意:即使在所有这些之前,您还需要通过运行eb init
命令来使用适当的EB项目初始化目录