git clone ASW codecommit

0

Im following https://aws.amazon.com/getting-started/hands-on/build-serverless-web-app-lambda-apigateway-s3-dynamodb-cognito/module-1/ facing issue on "Create a Git repository" on point "G". getting below error

"git clone https://git-codecomxxxx.us-east-1.amazonaws.com/v1/repos/wildrydes-site Cloning into 'wildrydes-site_new'... fatal: unable to access 'https://git-codecomxxxx.us-east-1.amazonaws.com/v1/repos/wildrydes-site/': The requested URL returned error: 403"

asked a year ago13218 views
3 Answers
0

The error message "fatal: unable to access 'https://git-codecomxxxx.us-east-1.amazonaws.com/v1/repos/wildrydes-site/': The requested URL returned error: 403" suggests that there is a problem with the authentication or authorization of your Git repository.

The 403 error code is an HTTP status code indicating that the client does not have permission to access the requested resource. This could be because the credentials you are using to access the repository are incorrect or because you do not have the necessary permissions to access the repository.

Here are a few things you can try to resolve this issue:

Check that you have entered the correct credentials when prompted to log in to the Git repository. Verify that you have the correct permissions to access the repository. Check that the repository URL is correct and that you are using the correct endpoint. Try to access the repository using the AWS CLI instead of the git clone command to see if you get the same error message.

answered a year ago
  • Added "AWSCodeCommitPowerUser" to IAM console user and used authenticate a user by "HTTPS Git credentials for AWS CodeCommit" on git command.

0

Ensure you have correctly followed the instruction outlined in Setup for HTTPS users using Git credentials. When executing git clone the first time, you should be prompted to enter the username and password that have been generated for you.

AWS
EXPERT
answered a year ago
0

You must delete the keychain record on OSX if you recently rotated your CodeCommit credentials. Once done, it will ask for the new credentials.

answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions