I am using aws certificate manager for managing SSL. Recently I purchased a wildcard ssl *.example-private.com Now I need that SSL certificate to deploy on enterprise git instance on aws.
How can i download ssl from aws?
I am using aws certificate manager for managing SSL. Recently I purchased a wildcard ssl *.example-private.com Now I need that SSL certificate to deploy on enterprise git instance on aws.
How can i download ssl from aws?
You cannot download a SSL certificate from ACM.
You can download SSL cert, but you cannot download its private key, therefore ACM certs cannot be used in third-party applications, like enterprise git in your case
– Dmitry Kankalovich
Sep 07 '21 at 13:59
Note: While this can be used to fetch the (already public) certificate, it does not download the private key necessary to use that certificate outside Amazon's systems.
It is now possible to download the certificate with the following command:
aws acm list-certificates / aws acm get-certificate
Ref:http://docs.aws.amazon.com/cli/latest/reference/acm/get-certificate.html
aws acm get-certificate --certificate-arn <arn-here> --output text
– Akhil
Nov 09 '21 at 11:29
You cannot download from ACM. from the FAQ:
Q: Can I use certificates on Amazon EC2 instances or on my own servers?
A: No. At this time, certificates provided by ACM can only be used with specific AWS services
You can't, but you can get a free one from https://letsencrypt.org/certificates/.
Letsencrypt also offers an API backed by open source code to automatically update.
git.example-private.comand I want to deploy ssl over it. what should I do in that case? and forget about the wildcard ssl i.e.*.example-private.com– Shailesh Sutar Dec 21 '16 at 14:07