somesh
somesh

Reputation: 548

AWS Elastic BeanStalk SignatureDoesNotMatch

I created an Elastic Beanstalk Environment using windows Power shell and i followed this deployment document Deploying a Django Application to Elastic Beanstalk

I done these steps: Python Virtual Environment with Django,

created django project,

create IAM user i got Access Key ID and Secret Access Key ID

failing this step environment and deploy your Django application

when ever i try eb init it asking access key, secret access key and region aws application auto generated names after done these steps i am getting this error

SignatureDoesNotMatch. The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details

I am new to deployment please help me any one

Thanks in advance ...

Upvotes: 1

Views: 402

Answers (1)

John Hanley
John Hanley

Reputation: 81464

The problem is that you are using EB CLI version 2.x. This is deprecated and no longer supported. The base set of commands changed with version 3.x.

The Elastic Beanstalk Command Line Interface (EB CLI)

The solution is to install the latest version.

Install the Elastic Beanstalk Command Line Interface (EB CLI)

Upvotes: 0

Related Questions