Skip to content

Commit

Permalink
Merge pull request #7275 from terraform-providers/td-aws_iot_thing-0.…
Browse files Browse the repository at this point in the history
…12-syntax

resource/aws_iot_thing: Ensure attributes configurations use equals
  • Loading branch information
bflad authored Jan 23, 2019
2 parents f817b7e + e2b07e3 commit 6e67202
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aws/resource_aws_iot_thing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func testAccAWSIotThingConfig_full(thingName, typeName, answer string) string {
return fmt.Sprintf(`
resource "aws_iot_thing" "test" {
name = "%s"
attributes {
attributes = {
One = "11111"
Two = "TwoTwo"
Answer = "%s"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/iot_thing.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Creates and manages an AWS IoT Thing.
resource "aws_iot_thing" "example" {
name = "example"
attributes {
attributes = {
First = "examplevalue"
}
}
Expand Down

0 comments on commit 6e67202

Please sign in to comment.