From 37f6ee432b64b0e1d5f32f4948482d0edc599ab2 Mon Sep 17 00:00:00 2001 From: Bryce Groff Date: Thu, 25 Jul 2024 13:55:37 -0700 Subject: [PATCH] docs: fix trailing commas on the S3 policy document. (#42510) --- docs/deploying-airbyte/infrastructure/aws.md | 10 +++++----- docs/enterprise-setup/implementation-guide.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/deploying-airbyte/infrastructure/aws.md b/docs/deploying-airbyte/infrastructure/aws.md index 581e235ef533..c26525b572f1 100644 --- a/docs/deploying-airbyte/infrastructure/aws.md +++ b/docs/deploying-airbyte/infrastructure/aws.md @@ -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/*" + } + ] } ``` diff --git a/docs/enterprise-setup/implementation-guide.md b/docs/enterprise-setup/implementation-guide.md index c8c91fa2cfc1..78e2ee381274 100644 --- a/docs/enterprise-setup/implementation-guide.md +++ b/docs/enterprise-setup/implementation-guide.md @@ -596,7 +596,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", @@ -606,11 +606,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/*" + } + ] } ```