Skip to content

Commit

Permalink
Misc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
YakDriver authored and anGie44 committed Jan 31, 2022
1 parent 2dad84e commit 811c0c8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion website/docs/d/s3_objects.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: |-

~> **NOTE on `max_keys`:** Retrieving very large numbers of keys can adversely affect Terraform's performance.

The bucket-objects data source returns keys (i.e., file names) and other metadata about objects in an S3 bucket.
The objects data source returns keys (i.e., file names) and other metadata about objects in an S3 bucket.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/cloudtrail.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ resource "aws_cloudtrail" "example" {
# ... other configuration ...
advanced_event_selector {
name = "Log all S3 buckets objects events except for two S3 buckets"
name = "Log all S3 objects events except for two S3 buckets"
field_selector {
field = "eventCategory"
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/s3_object.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource "aws_s3_bucket" "examplebucket" {
acl = "private"
}
resource "aws_s3_object" "examplebucket_object" {
resource "aws_s3_object" "example" {
key = "someobject"
bucket = aws_s3_bucket.examplebucket.id
source = "index.html"
Expand All @@ -56,7 +56,7 @@ resource "aws_s3_bucket" "examplebucket" {
acl = "private"
}
resource "aws_s3_object" "examplebucket_object" {
resource "aws_s3_object" "example" {
key = "someobject"
bucket = aws_s3_bucket.examplebucket.id
source = "index.html"
Expand All @@ -72,7 +72,7 @@ resource "aws_s3_bucket" "examplebucket" {
acl = "private"
}
resource "aws_s3_object" "examplebucket_object" {
resource "aws_s3_object" "example" {
key = "someobject"
bucket = aws_s3_bucket.examplebucket.id
source = "index.html"
Expand All @@ -96,7 +96,7 @@ resource "aws_s3_bucket" "examplebucket" {
}
}
resource "aws_s3_object" "examplebucket_object" {
resource "aws_s3_object" "example" {
key = "someobject"
bucket = aws_s3_bucket.examplebucket.id
source = "important.txt"
Expand Down

0 comments on commit 811c0c8

Please sign in to comment.