AWS S3 Permissions
Last updated
Was this helpful?
Was this helpful?
aws iam put-user-policy --user-name publisher-connectors --policy-name S3AccessPolicy --policy-document '{
"Version": "2024-10-24",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::${BUCKET}",
"arn:aws:s3:::${BUCKET}/*"
]
}
]
}'aws iam create-access-key --user-name publisher-connectors