Importing a certificate - Amazon Certificate Manager
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Importing 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 certificates.

Import (console)

The following example shows how to import a certificate using the Amazon Web Services Management Console.

  1. 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.

  2. Choose Import a certificate.

  3. Do the following:

    1. For Certificate body, paste the PEM-encoded certificate to import. It should begin with -----BEGIN CERTIFICATE----- and end with -----END CERTIFICATE-----.

    2. 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-----.

    3. (Optional) For Certificate chain, paste the PEM-encoded certificate chain.

  4. (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.

  5. Choose Import.

Import (Amazon CLI)

The following example shows how to import a certificate using the Amazon Command Line Interface (Amazon CLI). The example assumes the following:

  • 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.