-
Goto your AWS IAM Console and create or modify a current IAM user (preferably the one you use to connect with your AWS CLI)
-
Goto Security Credentials -> Scroll down to SSH keys for AWS CodeCommit
-
Create a private/public ssh key on your local machine:
ssh-keygen -t rsa -b 4096 -C "[email protected]"
-
Click on "Upload SSH Public Key" and paste in the contents of
~/.ssh/id_rsa.pub
into the textarea and save. -
Note the Access Key ID that was generated, it will be something like APKA********** this will be used as your User for SSH access
-
Navigate to the AWS CodeCommit Console and click on your repository (or create one)
-
Create a
~/.ssh/config
file with the following contents (modify for your setup/names):
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
page-auth { | |
.amplify-authenticator { | |
@extend .card; | |
padding-bottom: 1em; | |
} | |
.amplify-form-input { | |
@extend .text-input; | |
@extend .text-input-md; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
NewerOlder