...
To open a file from the S3 bucket with Kudo, you need to make sure that Kudo has at least read access to it. This will be sufficient if you use Kudo only as a viewer. If you use Kudo in edit mode, it will also require write access.
To allow s3 bucket access to Kudo, put a bucket policy on the bucket allowing the desired actions to Kudo account : 649336859113
Code Block |
---|
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Permissions for Accounts",
"Effect": "Allow",
"Principal": {
"AWS": [
"arn:aws:iam::649336859113:root"
]
},
"Action": [
"s3:PutObject",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::kudo-demo-content",
"arn:aws:s3:::kudo-demo-content/*"
]
}
]
} |
We will need to add an IAM policy to xenon EC2 roles to allow operations on the bucket
Code Block |
---|
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::kudo-demo-content",
"arn:aws:s3:::kudo-demo-content/*"
]
}
]
} |