I have an application which uses the certificate from Java key store which is physically stored on ec2 machine.I want to use the certificate from ACM directly at runtime without storing it on ec2 server.
Asked
Active
Viewed 762 times
1
-
How did it go? Still unclear what you can do? – Marcin Jan 06 '22 at 23:36
-
Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jan 08 '22 at 09:02
1 Answers
-1
You can't export AWS ACM certificates. From docs:
You cannot export a publicly trusted ACM certificate or its private key.
If you want to use them with your instances, you either have to front it with load balancer or CloudFront where you can deploy the ACM certs. Other options on how you can use ACM are listed here.

Marcin
- 215,873
- 14
- 235
- 294
-
https://docs.aws.amazon.com/acm/latest/APIReference/API_ExportCertificate.html this will return 3 things, "certificate", "certificateChain" and "privateKey" – kewur May 27 '22 at 20:04
-
1