Object Connect S3 Bucket Requirements
S3 Bucket created with the following access supplied to North Shore Automation:
AWS User with R/W Access to the S3 Bucket
AWS Key ID supplied to North Shore Automation
AWS Secret Access Key supplied to North Shore Automation
Client to confirm that the AWS User can upload and download to and from the S3 Bucket using the credentials shared to North Shore Automation.
North Shore Automation suggests using an application such as CyberDuck (or another FTP application) to complete this test.
Minimum permissions required sample policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1470255459000",
"Effect": "Allow",
"Action": [
"s3:AbortMultipartUpload",
"s3:GetObject",
"s3:GetObjectVersion",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:ListMultipartUploadParts",
"s3:PutObject",
"s3:PutObjectAcl",
"s3:RestoreObject"
],
"Resource": [
"arn:aws:s3:::bucket-northshoreautomation-example",
"arn:aws:s3:::bucket-northshoreautomation-example/*"
]
}
]
}