diff --git a/source/content/guides/wordpress-developer/07-wordpress-s3.md b/source/content/guides/wordpress-developer/07-wordpress-s3.md index 051a385efd..61acfb8640 100644 --- a/source/content/guides/wordpress-developer/07-wordpress-s3.md +++ b/source/content/guides/wordpress-developer/07-wordpress-s3.md @@ -75,12 +75,13 @@ You must configure the service within your [AWS Management Console](https://cons "Version": "2012-10-17", "Statement": [ { - "Sid": "ObjectLevel", + "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ - "s3:PutObject", - "s3:GetObject", - "s3:DeleteObject" + "s3:PutObject", + "s3:GetObject", + "s3:DeleteObject", + "s3:PutObjectAcl" ], "Resource": "arn:aws:s3:::bucketname/*" }, @@ -88,10 +89,11 @@ You must configure the service within your [AWS Management Console](https://cons "Sid": "BucketLevel", "Effect": "Allow", "Action": [ - "s3:GetBucketPublicAccessBlock", - "s3:GetBucketOwnershipControls", - "s3:ListBucket", - "s3:GetBucketLocation" + "s3:GetBucketPublicAccessBlock", + "s3:PutBucketPublicAccessBlock", + "s3:PutBucketOwnershipControls", + "s3:GetBucketOwnershipControls", + "s3:GetBucketLocation" ], "Resource": "arn:aws:s3:::bucketname" } @@ -99,7 +101,7 @@ You must configure the service within your [AWS Management Console](https://cons } ``` - ![Create AWS S3 access step 2](../../../images/guides/s3-access2.png) + ![Create AWS S3 access step 2](../../../images/guides/s3-access2-updated.png) 1. Enter your policy name in the **Policy name** field (for example, Pantheons3Access) and then click **Create Policy**. @@ -117,7 +119,7 @@ You must configure the service within your [AWS Management Console](https://cons - Steps 1-3 create a custom AWS User policy with read and write permissions to the specific bucket assigned to your site. You can select the **AmazonS3FullAccess** policy to replace the custom policy that you created if you require higher permissions. + Steps 1-3 create a custom AWS User policy with read and write permissions to the specific bucket assigned to your site. You can select the **AmazonS3FullAccess** policy to replace the custom policy that you created if you require higher permissions (example: listing buckets in the WP Offload Media plugin). diff --git a/source/images/guides/s3-access2-updated.png b/source/images/guides/s3-access2-updated.png new file mode 100644 index 0000000000..591e123a07 Binary files /dev/null and b/source/images/guides/s3-access2-updated.png differ diff --git a/source/images/guides/s3-access2.png b/source/images/guides/s3-access2.png deleted file mode 100644 index cda6e49394..0000000000 Binary files a/source/images/guides/s3-access2.png and /dev/null differ