Joshua Reed Posted June 13, 2019 Report Posted June 13, 2019 I am looking to see if there is a document or guide on how to setup AWS S3 Bucket for Call Recording Storage? Quote
Baze Posted June 13, 2019 Report Posted June 13, 2019 Here are instructions for the AWS setup part. This will give access and save only so if you want to be able to also delete you'd need to add that. We have a separate script which actually deletes on a set time so for security we don't give kazoo delete privileges. Customer S3 bucket setup and permissions 1. Create S3 bucket with name of your choice choosing to disable all public access during setup. 2. Create AWS IAM policy with the following permissions. Make sure to substitute the name of your S3 bucket in both spots for the ARN {BUCKETNAME}. { "Version": "2019-05-19", "Statement": [ { "Effect": "Allow", "Action": ["s3:ListBucket"], "Resource": ["arn:aws:s3:::{BUCKETNAME}"] }, { "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject" ], "Resource": ["arn:aws:s3:::{BUCKETNAME}/*"] } ] } 3. Create an IAM User, assign the previously created policy and note this user’s AWS Key and AWS Secret. 4. Once this is complete provide Audian with the following pieces of information and we can get it linked up to your account: AWS Bucket Name AWS IAM User Key AWS IAM User Secret Quote
Baze Posted June 13, 2019 Report Posted June 13, 2019 Oh - well, ignore 4 of course - don't send us that!! 😂 Quote
Guest David Posted June 27, 2019 Report Posted June 27, 2019 @Joshua Reed Were you looking for guidance on the process of getting this going on the AWS side of things? Quote
Administrators mc_ Posted June 27, 2019 Administrators Report Posted June 27, 2019 To complement @Baze's setup of the S3 bucket, take a look at https://docs.2600hz.com/dev/doc/blog/storage/ Quote
Joshua Reed Posted June 28, 2019 Author Report Posted June 28, 2019 Yes I am looking for a little guidance please. The screens on the Monster UI for AMS buckets seems to be asking for some different information. Keep trying to figure it out but having a little bit of a challenge Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.