Skip to content

Instantly share code, notes, and snippets.

@if6was9
Created August 24, 2012 17:27
Show Gist options
  • Select an option

  • Save if6was9/3453173 to your computer and use it in GitHub Desktop.

Select an option

Save if6was9/3453173 to your computer and use it in GitHub Desktop.
To create key/cert for use in AWS IAM
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