amazonka-iot-1.3.7: Amazon IoT SDK.

Copyright(c) 2013-2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.IoT.CreateCertificateFromCsr

Contents

Description

Creates an X.509 certificate using the specified certificate signing request.

Note Reusing the same certificate signing request (CSR) results in a distinct certificate.

You can create multiple certificates in a batch by creating a directory and copying multiple .csr files into that directory and specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs.

Assuming a set of CSRs are located inside of the directory my-csr-directory:

On Linux and OSX, the command is:

$ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}

This command lists all of the CSRs in my-csr-directory and pipes each CSR filename to the aws iot create-certificate-from-csr AWS CLI command to create a certificate for the corresponding CSR.

The aws iot create-certificate-from-csr part of the command can also be run in parallel to speed up the certificate creation process:

$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}

On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is:

ls -Name my-csr-directory | %{aws iot create-certificate-from-csr
  • -certificate-signing-request file://my-csr-directory/$_}

On Windows Command Prompt, the command to create certificates for all CSRs in my-csr-directory is:

forfiles \/p my-csr-directory \/c \"cmd \/c aws iot

create-certificate-from-csr --certificate-signing-request file://'path"

See: AWS API Reference for CreateCertificateFromCsr.

Synopsis

Creating a Request

createCertificateFromCsr Source

Creates a value of CreateCertificateFromCsr with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Request Lenses

ccfcSetAsActive :: Lens' CreateCertificateFromCsr (Maybe Bool) Source

Specifies whether the certificate is active.

Destructuring the Response

createCertificateFromCsrResponse Source

Creates a value of CreateCertificateFromCsrResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Response Lenses

ccfcrsCertificateARN :: Lens' CreateCertificateFromCsrResponse (Maybe Text) Source

The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.

ccfcrsCertificateId :: Lens' CreateCertificateFromCsrResponse (Maybe Text) Source

The ID of the certificate. Certificate management operations only take a certificateId.