Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit ca4d3cd

Browse files
author
Lessa
committed
Removed brackets from Bucket Policy to prevent confusion for those reading instructions too fast
1 parent 65e744a commit ca4d3cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WebApplication/1_StaticWebHosting/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ See [this example](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket
168168

169169
1. Choose the **Permissions** tab, then choose **Bucket Policy**.
170170

171-
1. Enter the following policy document into the bucket policy editor replacing `[YOUR_BUCKET_NAME]` with the name of the bucket you created in section 1:
171+
1. Enter the following policy document into the bucket policy editor replacing `YOUR_BUCKET_NAME` with the name of the bucket you created in section 1:
172172

173173
```json
174174
{
@@ -178,7 +178,7 @@ See [this example](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket
178178
"Effect": "Allow",
179179
"Principal": "*",
180180
"Action": "s3:GetObject",
181-
"Resource": "arn:aws:s3:::[YOUR_BUCKET_NAME]/*"
181+
"Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
182182
}
183183
]
184184
}

0 commit comments

Comments
 (0)