aws_iot_certificate

Creates and manages an AWS IoT certificate.

Example Usage

resource "aws_iot_certificate" "cert" {
  csr = "${file("/my/csr.pem")}"
  active = true
}

Argument Reference

  • active - (Required) Boolean flag to indicate if the certificate should be active
  • csr - (Required) The certificate signing request. Review the IoT API Reference Guide for more information on creating a certificate from a certificate signing request (CSR).

Attributes Reference

  • arn - The ARN of the created AWS IoT certificate

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/iot_certificate.html