Skip to content

Commit

Permalink
Merge pull request #2810 from cloudavail/issue-2809-s3-correct-policy
Browse files Browse the repository at this point in the history
resolve issue-2809 with correct IAM Policy
  • Loading branch information
AnthonyTsu1984 authored Oct 9, 2024
2 parents e44ebf4 + 86ca990 commit 8fd7fa6
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions site/en/adminGuide/clouds/aws/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,20 @@ For more details, refer to [IAM OIDC](https://docs.aws.amazon.com/eks/latest/use
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::<bucket-name>"
]
},
{
"Effect": "Allow",
"Action": [
"s3:DeleteObject",
"s3:GetObject",
"s3:PutObject",
"s3:ListBucket",
"s3:DeleteObject"
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::<bucket-name>",
"arn:aws:s3:::<bucket-name>/*"
]
}
Expand Down

0 comments on commit 8fd7fa6

Please sign in to comment.