Jump to content
KAZOOcon: hackathon signup and details here! ×

Setup AWS S3 Bucket for Call Recording Storage


Recommended Posts

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
Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...