Elastic Beanstalk could not find any platforms

≯℡__Kan透↙ 提交于 2019-12-03 04:27:28

Problem is, as @helloV said, your user does not have access. Now this was a complete surprise to me because I was using the root (which I really shouldn't) and I ASSUMED it would just have access.

So solution is that you HAVE TO ATTACH a policy as shown in the screenshot below since even the root IAM account does not have this policy.

Your IAM account does not have permission to access Elastic Beanstalk. Contact your IAM admin and have the admin grant your account full Elastic Beanstalk permissions.

philals

I had this issue as well. There is a file in /Users/USER_NAME/.aws/ called config.

It looks like below -

[profile eb-cli]
aws_access_key_id = <ACCESS_KEY>
aws_secret_access_key = <SECRET_ACCESS_KEY>

Update this file with your updated aws_access_key_id & aws_secret_access_key

Credit: How to change the AWS account using the Elastic Beanstalk CLI

rm ~/.aws

This fixed the issue for me (updating ~/.aws/config or ~/.aws/credentials in here didn't help)

Not much of an answer, but I'll leave it here for anyone else so they don't frustrate themselves debugging an issue that doesn't require debugging.

IAM permissions don't seem to always provision immediately, & even when they do sometimes the CLI doesn't seem to pick this up right away (would welcome any technical expansion on why this is).

In my case, I ensured that my IAM user had the permission AWSElastikBeanstalkFullAccess. Running eb init was still prompting ERROR: NotFoundError - Elastic Beanstalk could not find any platforms. Ensure you have the necessary permissions to access Elastic Beanstalk.

Fighting with this did nothing, after about 5 minutes I ran again and all was well. Next I run eb create to create an environment. Same issue. I gave it about another 5 minutes, tried again, and all was well.

I can't expand on why this is, but I wanted to make sure my experience was documented here so future readers don't tear their hair out fighting a permissions error when they have proper permissions.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!