eb init - ElasticBeanstalk 应用程序环境未显示在选项列表中
Posted
技术标签:
【中文标题】eb init - ElasticBeanstalk 应用程序环境未显示在选项列表中【英文标题】:eb init - ElasticBeanstalk application environment not showing up in the list of choices 【发布时间】:2021-05-04 00:30:49 【问题描述】:我已经从 AWS 控制台创建了一个应用程序和一个相应的环境。
我跑了:eb init
但 ElasticBeanstalk 应用程序环境未显示在选项列表中。
有人可以帮助/指出正确的方向来帮助解决这个问题吗?
【问题讨论】:
确保您使用正确的帐户/凭据和区域。 【参考方案1】:您可以尝试几件事:
-
在您的本地计算机上检查
~/.aws/config
并确保您设置了正确的凭据。您的凭据应如下所示:
[profile my-profile-name]
aws_access_key_id = AKBCDEFG1234567890
aws_secret_access_key = abce123456ghijklmnop
region = us-east-1
-
运行带有
-i
标志的 init 命令以确保您进入交互模式,并传递配置文件名称:
eb init -i --profile=my-profile-name
【讨论】:
以上是关于eb init - ElasticBeanstalk 应用程序环境未显示在选项列表中的主要内容,如果未能解决你的问题,请参考以下文章
eb init - ElasticBeanstalk 应用程序环境未显示在选项列表中