Created
August 24, 2012 17:27
-
-
Save if6was9/3453173 to your computer and use it in GitHub Desktop.
To create key/cert for use in AWS IAM
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
| To create key/cert for use in AWS IAM | |
| $ openssl genrsa -out iam.key 1024 | |
| $ openssl req -new -key iam.key -out iam.csr | |
| $ openssl x509 -req -in iam.csr -signkey iam.key -out iam.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment