Skip to content

Commit

Permalink
resource/aws_s3_bucket: Fix lint error (hashicorp#12626)
Browse files Browse the repository at this point in the history
  • Loading branch information
teraken0509 authored and adamdecaf committed May 28, 2020
1 parent b97bd19 commit 3d11308
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/r/s3_bucket.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -318,15 +318,15 @@ resource "aws_s3_bucket" "bucket" {
bucket = "mybucket"
grant {
id = "${data.aws_canonical_user_id.current_user.id}"
type = "CanonicalUser"
id = "${data.aws_canonical_user_id.current_user.id}"
type = "CanonicalUser"
permissions = ["FULL_CONTROL"]
}
grant {
type = "Group"
type = "Group"
permissions = ["READ", "WRITE"]
uri = "http://acs.amazonaws.com/groups/s3/LogDelivery"
uri = "http://acs.amazonaws.com/groups/s3/LogDelivery"
}
}
```
Expand Down

0 comments on commit 3d11308

Please sign in to comment.