forked from hashicorp/terraform-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs for iot event configurations resource
- Loading branch information
1 parent
ad5b5a8
commit fd4f841
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |