44👍
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.
8👍
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.
- [Django]-What does this Django regular expression mean? `?P`
- [Django]-How to programmatically call a Django Rest Framework view within another view?
- [Django]-How do I use Django's logger to log a traceback when I tell it to?
5👍
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
- [Django]-Explicitly set MySQL table storage engine using South and Django
- [Django]-How to revert the last migration?
- [Django]-Running ./manage.py migrate during Heroku deployment
1👍
rm ~/.aws
This fixed the issue for me (updating ~/.aws/config
or ~/.aws/credentials
in here didn’t help)
- [Django]-In Django is there a way to display choices as checkboxes?
- [Django]-How to generate urls in django
- [Django]-Is it better to use path() or url() in urls.py for django 2.0?
0👍
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.
- [Django]-Django Rest Framework – Missing Static Directory
- [Django]-Django custom view into admin page
- [Django]-How to force a user logout in Django?