Creates and manages an AWS IoT Thing.
resource "aws_iot_thing" "example" {
name = "example"
attributes {
First = "examplevalue"
}
}
name - (Required) The name of the thing. attributes - (Optional) Map of attributes of the thing. thing_type_name - (Optional) The thing type name. In addition to the arguments above, the following attributes are exported:
default_client_id - The default client ID. version - The current version of the thing record in the registry. arn - The ARN of the thing. IOT Things can be imported using the name, e.g.
$ terraform import aws_iot_thing.example example
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/iot_thing.html