I have a public SSL certificate in Amazon Certificate Manager. I want to upload this certificate to an instance that is not hosted in amazon. How can i download the certific
You cannot download a SSL certificate from ACM with Private key.
You can download the certificate using awscli
with aws acm get-certificate --certificate-arn arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012
. This will get you Public certificate.
https://docs.aws.amazon.com/cli/latest/reference/acm/get-certificate.html