Setup
To enable Data Axle to upload files to your S3 bucket it is necessary to create an IAM policy for our IAM role. The role ID will be provided separately upon request. This policy is expected to look something similar to the below example, with the role and bucket details changed to real values.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowDataAxleBucketActions",
"Effect": "Allow",
"Principal": {
"AWS": "role-provided-on-request"
},
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation",
"s3:PutObject",
"s3:PutObjectAcl",
"s3:GetObject",
"s3:GetObjectAcl"
],
"Resource": [
"arn:aws:s3:::yourbucket"
"arn:aws:s3:::yourbucket/*"
]
}
]
}