Generate the S3 bucket policy
By specifying a bucket policy, you grant permissions for the bucket and the objects in it.
To use Enterprise Talk with S3, the Planon user needs to have sufficient permissions to read from and write objects to the bucket. Below is a sample policy.
1. Fill out the correct values (in the following example these are represented by the values in between angle brackets).
{
"Version": "2012-10-17",
"Id": "<policy_id>",
"Statement": [
{
"Sid": "Allow access to Planon API user",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::<account_id>:user/<user_name>"
},
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::<bucket_name>/*",
"arn:aws:s3:::<bucket_name>"
]
}
]
}
For more information on creating an S3 bucket policy, see