Reputation: 1570
I have created an application and a corresponsing environment from AWS console.
I ran: eb init
But the ElasticBeanstalk application environment is not showing up in the list of choices.
Can someone help / point me in the right direction to help resovle this issue ?
Upvotes: 2
Views: 767
Reputation: 2245
A couple things you can try:
~/.aws/config
and make sure you have the correct credentials set up. Your credentials should look like this: [profile my-profile-name]
aws_access_key_id = AKBCDEFG1234567890
aws_secret_access_key = abce123456ghijklmnop
region = us-east-1
-i
flag to make sure you enter the interactive mode, and pass the profile name: eb init -i --profile=my-profile-name
Upvotes: 4