If you use Amazon S3 for file storage, FileCloud requires S3 access to create and manage the bucket.
The IAM user that manages the bucket must have the following permissions. The following policy grants access to all S3 buckets in your AWS account. You can restrict access to a specific bucket using the appropriate resource arn. For example, arn:aws:s3:::bucket_name
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:CreateBucket",
"s3:DeleteObject",
"s3:GetObject",
"s3:ListBucket",
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::*"
]
}
]
}
or
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:CreateBucket",
"s3:DeleteObject",
"s3:GetObject",
"s3:ListBucket",
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::bucketname/*"
]
}
]
}