Skip to content

Commit

Permalink
Add docs for iot event configurations resource
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksiyVeretiuk committed Oct 15, 2019
1 parent ad5b5a8 commit fd4f841
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions website/docs/r/iot_event_configurations.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
layout: "aws"
page_title: "AWS: aws_iot_event_configurations"
description: |-
Creates and manages an AWS IoT Thing.
---

# Resource: aws_iot_event_configurations

Manages an AWS Event Configurations.

## Example Usage

```hcl
resource "aws_iot_event_configurations" "example" {
values = {
"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

* `values` - (Optional) Map. The new event configuration values. You can use only these strings as keys: THING_GROUP_HIERARCHY, THING_GROUP_MEMBERSHIP, THING_TYPE, THING_TYPE_ASSOCIATION, THING_GROUP, THING, POLICY, CA_CERTIFICATE, JOB_EXECUTION, CERTIFICATE, JOB. Use boolean for values of mapping.


## Import

IOT Event Configurations can be imported using the name, e.g.

```
$ terraform import aws_iot_event_configurations.example event-configurations
```

0 comments on commit fd4f841

Please sign in to comment.