Hi,
Can you please let me know if AWS CodeCommit supports integration with Crucible. If so, any instructional information regarding this integration would be greatly appreciated.
Thanks!
Hi Jay,
AWS CodeCommit is a GIT repository and this is fully supported by FishEye and Crucible.
To set up the connection:
AWS:
create a policy to allow read access to your AWS CodeCommit repository, something like AWSCodeCommit-myRepo:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "codecommit:BatchGetRepositories", "codecommit:Get*", "codecommit:GitPull", "codecommit:List*", "codecommit:Test*" ], "Resource": "arn:aws:codecommit:us-east-1:[]:[repository resource id]" } ] }
, where the Resource is your AWS CodeCommit resource id.
APKAEIBAERJR2EXAMPLE
FishEye & Crucible:
on the URL paste your repository SSH URL and add the SSH Key ID as user, this will be smth like:
ssh://APKAEIBAERJR2EXAMPLE@git-codecommit.us-east-1.amazonaws.com/v1/repos/myRepository
press the Test button and you should see a successful test connection.
Mac
Thanks, Maciej! This is exactly the information we needed.
Regards,
Jay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can also use the "HTTPS Git credentials for AWS CodeCommit" option under the IAM user. It will give you an https user like fisheye_codecommit-at-370284719446. Then you just use the https option with that user/pass when you create the repository in fisheye.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I haven't been able to get this SSH method to work for connecting to a CodeCommit repository. I'm getting the error "The file you uploaded is not a valid private key". What format is the private key file supposed to be in? I tried uploading a CSV and TXT file containing just the key, and also a CSV file containing the user name, key ID, key, and console login link, but nothing has worked so far. Any suggestions would be greatly appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe that Git is being used in AWS CodeCommit. The answer is probably yes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.