Resource: aws_iot_event_configurations

Manages IoT event configurations.

Example Usage

resource "aws_iot_event_configurations" "example" {
  event_configurations = {
    "THING"                  = true,
    "THING_GROUP"            = false,
    "THING_TYPE"             = false,
    "THING_GROUP_MEMBERSHIP" = false,
    "THING_GROUP_HIERARCHY"  = false,
    "THING_TYPE_ASSOCIATION" = false,
    "JOB"                    = false,
    "JOB_EXECUTION"          = false,
    "POLICY"                 = false,
    "CERTIFICATE"            = true,
    "CA_CERTIFICATE"         = false,
  }
}

Argument Reference

Attribute Reference

This resource exports no additional attributes.

Import

In Terraform v1.5.0 and later, use an import block to import IoT Event Configurations using the AWS Region. For example:

import {
  to = aws_iot_event_configurations.example
  id = "us-west-2"
}

Using terraform import, import IoT Event Configurations using the AWS Region. For example:

% terraform import aws_iot_event_configurations.example us-west-2