Redshift
Create an S3 output bucket
Update the Aporia IAM role for Redshift access
Step 1: Obtain your aporia IAM role
Step 2: Create an access policy


{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetBucketLocation" ], "Resource": [ "arn:aws:s3:::<results-bucket>" ] }, { "Effect": "Allow", "Action": [ "s3:GetObject", "s3:PutObject" ], "Resource": [ "arn:aws:s3:::<results-bucket>/*" ] }, { "Effect": "Allow", "Action": "redshift:GetClusterCredentials", "Resource": "arn:aws:redshift:<region>:<account-id>:dbuser:<redshift-cluster>/<database-name>" }, { "Effect": "Allow", "Action": "redshift:DescribeClusters", "Resource": "*" } ] }
Create a Redshift data source in Aporia
Last updated