Skip to content

Commit 82688b0

Browse files
committed
DOC-375 more spacing fixes
1 parent 6329c17 commit 82688b0

File tree

1 file changed

+13
-13
lines changed
  • src/connections/storage/catalog/aws-s3

1 file changed

+13
-13
lines changed

src/connections/storage/catalog/aws-s3/index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,23 @@ To complete this section, you need access to your AWS dashboard.
4545
3. Attach the following policy to the IAM role created in step 2. Replace `<YOUR_BUCKET_NAME>` with the name of the S3 bucket you created in step 1.
4646
```json
4747
{
48-
"Version": "2012-10-17",
49-
"Statement": [
50-
{
51-
"Sid": "PutObjectsInBucket",
52-
"Effect": "Allow",
53-
"Action": [
54-
"s3:PutObject",
55-
"s3:PutObjectAcl"
56-
],
57-
"Resource": "arn:aws:s3:::<YOUR_BUCKET_NAME>/segment-logs/*"
58-
}
48+
"Version": "2012-10-17",
49+
"Statement": [
50+
{
51+
"Sid": "PutObjectsInBucket",
52+
"Effect": "Allow",
53+
"Action": [
54+
"s3:PutObject",
55+
"s3:PutObjectAcl"
56+
],
57+
"Resource": "arn:aws:s3:::<YOUR_BUCKET_NAME>/segment-logs/*"
58+
}
5959
]
6060
}
6161
```
6262
If you're using KMS encryption on your S3 bucket, add the following policy to the IAM role:
6363
```json
64-
{
64+
{
6565
"Version": "2012-10-17",
6666
"Statement": [
6767
{
@@ -74,7 +74,7 @@ To complete this section, you need access to your AWS dashboard.
7474
"Resource": "<YOUR_KEY_ARN>"
7575
}
7676
]
77-
}
77+
}
7878
```
7979
If you have server-side encryption enabled, see the [required configuration](#encryption).
8080

0 commit comments

Comments
 (0)