From c42a20138928d18d5978f3b77536abda3b04892b Mon Sep 17 00:00:00 2001 From: Adam Azzam <33043305+aaazzam@users.noreply.github.com> Date: Wed, 16 Apr 2025 16:09:21 -0400 Subject: [PATCH] docs: remove trailing commas from AWS IAM Policies (#2324) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before: Screenshot 2025-04-08 at 10 58 50 AM After: Screenshot 2025-04-08 at 10 58 58 AM ## Summary by CodeRabbit - **Documentation** - Updated JSON policy examples in the storage guides to correct formatting issues and enhance syntax clarity for readers. --- docs/src/guides/storage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/guides/storage.md b/docs/src/guides/storage.md index a87bb7ff..a0a17dbe 100644 --- a/docs/src/guides/storage.md +++ b/docs/src/guides/storage.md @@ -342,7 +342,7 @@ For **read and write access**, LanceDB will need a policy such as: "Action": [ "s3:PutObject", "s3:GetObject", - "s3:DeleteObject", + "s3:DeleteObject" ], "Resource": "arn:aws:s3::://*" }, @@ -374,7 +374,7 @@ For **read-only access**, LanceDB will need a policy such as: { "Effect": "Allow", "Action": [ - "s3:GetObject", + "s3:GetObject" ], "Resource": "arn:aws:s3::://*" },