Connecting with AWS storage
See how you can add your AWS credentials to connect your own AWS S3 buckets to your datasets on Mindkosh.
Create an IAM user on AWS
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": [
"arn:aws:s3:::<example-bucket>"
]
},
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::<example-bucket>/*"
]
}
]
}
Set CORS policy

Add credentials to Mindkosh

Last updated