1
0
mirror of synced 2025-12-25 02:09:19 -05:00

docs: fix trailing commas on the S3 policy document. (#42510)

This commit is contained in:
Bryce Groff
2024-07-25 13:55:37 -07:00
committed by GitHub
parent 6de1cf1e24
commit 37f6ee432b
2 changed files with 10 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ The [following policies](https://docs.aws.amazon.com/AmazonS3/latest/userguide/e
{
"Effect": "Allow",
"Action": ["s3:ListBucket", "s3:GetBucketLocation"],
"Resource": "arn:aws:s3:::YOUR-S3-BUCKET-NAME",
"Resource": "arn:aws:s3:::YOUR-S3-BUCKET-NAME"
},
{
"Effect": "Allow",
@@ -38,11 +38,11 @@ The [following policies](https://docs.aws.amazon.com/AmazonS3/latest/userguide/e
"s3:PutObjectAcl",
"s3:GetObject",
"s3:GetObjectAcl",
"s3:DeleteObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::YOUR-S3-BUCKET-NAME/*",
},
],
"Resource": "arn:aws:s3:::YOUR-S3-BUCKET-NAME/*"
}
]
}
```