W3cubDocs

/Terraform

aws_iot_thing

Creates and manages an AWS IoT Thing.

Example Usage

resource "aws_iot_thing" "example" {
  name = "example"
  attributes {
    First = "examplevalue"
  }
}

Argument Reference

  • name - (Required) The name of the thing.
  • attributes - (Optional) Map of attributes of the thing.
  • thing_type_name - (Optional) The thing type name.

Attributes Reference

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.

Import

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