Skip to content

Commit

Permalink
docs: fix trailing commas on the S3 policy document. (#42510)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff authored Jul 25, 2024
1 parent 6de1cf1 commit 37f6ee4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docs/deploying-airbyte/infrastructure/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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/*"
}
]
}
```

Expand Down
10 changes: 5 additions & 5 deletions docs/enterprise-setup/implementation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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/*"
}
]
}
```

Expand Down

0 comments on commit 37f6ee4

Please sign in to comment.