Datasource Policy Examples
S3 policy examples for configuring Datasources in Roboflow.
Custom IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:ListBucket", "s3:GetBucketLocation"],
"Resource": "arn:aws:s3:::your-bucket-name"
},
{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:GetObjectVersion", "s3:GetObjectTagging"],
"Resource": "arn:aws:s3:::your-bucket-name/*"
}
]
}Bucket Policy
Assume Role Trust Policy
Last updated
Was this helpful?