Import a certificate
You can import an externally obtained certificate (that is, one provided by a third-party trust services provider) into ACM by using the Amazon Web Services Management Console, the Amazon CLI, or the ACM API. The following topics show you how to use the Amazon Web Services Management Console and the Amazon CLI. Procedures for obtaining a certificate from a non-Amazon issuer are outside the scope of this guide.
Important
Your selected signature algorithm must meet the Prerequisites for importing ACM certificates.
Import (console)
The following example shows how to import a certificate using the Amazon Web Services Management Console.
-
Open the ACM console at https://console.amazonaws.cn/acm/home
. If this is your first time using ACM, look for the Amazon Certificate Manager heading and choose the Get started button under it. -
Choose Import a certificate.
-
Do the following:
-
For Certificate body, paste the PEM-encoded certificate to import. It should begin with
-----BEGIN CERTIFICATE-----
and end with-----END CERTIFICATE-----
. -
For Certificate private key, paste the certificate's PEM-encoded, unencrypted private key. It should begin with
-----BEGIN PRIVATE KEY-----
and end with-----END PRIVATE KEY-----
. -
(Optional) For Certificate chain, paste the PEM-encoded certificate chain.
-
-
(Optional) To add tags to your imported certificate, choose Tags. A tag is a label that you assign to an Amazon resource. Each tag consists of a key and an optional value, both of which you define. You can use tags to organize your resources or track your Amazon costs.
-
Choose Import.
Import (Amazon CLI)
The following example shows how to import a certificate using the Amazon Command Line Interface (Amazon CLI)
-
The PEM-encoded certificate is stored in a file named
Certificate.pem
. -
The PEM-encoded certificate chain is stored in a file named
CertificateChain.pem
. -
The PEM-encoded, unencrypted private key is stored in a file named
PrivateKey.pem
.
To use the following example, replace the file names with your own and type the command on one continuous line. The following example includes line breaks and extra spaces to make it easier to read.
$ aws acm import-certificate --certificate fileb://
Certificate.pem
\ --certificate-chain fileb://CertificateChain.pem
\ --private-key fileb://PrivateKey.pem
If the import-certificate
command is successful, it returns the Amazon Resource Name (ARN) of the
imported certificate.