This commit is contained in:
nquidox 2025-10-15 19:48:57 +03:00
commit 9629684d2b
3 changed files with 73 additions and 0 deletions

19
policies/api-policy.json Normal file
View file

@ -0,0 +1,19 @@
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::user-merch-images",
"arn:aws:s3:::user-merch-images/*"
]
}
]
}