This is a short note with useful commands for PFX keystores.
Import to AWS Certificate Manager
When you need to import PFX certificate into AWS Certificate Manager, you will have to export the unencrypted private key and certificate chain first.
- Export the unencrypted private key from PFX
- Export the certificate chain from PFX
openssl pkcs12 -in domain_certificate.pfx -nocerts -nodes -out private_key.pem
openssl pkcs12 -in domain_certificate.pfx -nokeys -out certificate.pem
When you have the PEM files, you can go to the AWS Certificate Manager, click "Import a Certificate" button and enter the following:
- Certificate body* - paste the first certificate from certificate.pem ending with the words: "-----END CERTIFICATE-----"
- Certificate private key* - paste the contents of private_key.pem
- Certificate chain - paste the complete contents of certificate.pem
Comments
Post a Comment