Creates and manages an AWS IoT certificate.
resource "aws_iot_certificate" "cert" {
csr = "${file("/my/csr.pem")}"
active = true
}
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). arn - The ARN of the created AWS IoT certificate
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/iot_certificate.html