What IAM policy permissions does AltaVault need to access Amazon AWS S3 or Glacier?
Applies to
- AltaVault
- Amazon
Answer
AWS Identity and Access Management (IAM) is a framework that allows you to control access to AWS resources, including S3 and Glacier. The following is an example IAM policy for AltaVault:
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1394143726000", "Effect": "Allow", "Action": [ "s3:ListAllMyBuckets" ], "Resource": [ "arn:aws:s3:::*" ] }, { "Sid": "Stmt1394143742000", "Effect": "Allow", "Action": [ "s3:CreateBucket", "s3:GetBucketLocation", "s3:ListBucket", "s3:ListBucketMultipartUploads", "s3:GetLifecycleConfiguration", "s3:PutLifecycleConfiguration" ], "Resource": [ "arn:aws:s3:::bucket_name" ] }, { "Sid": "Stmt1394143790000", "Effect": "Allow", "Action": [ "s3:AbortMultipartUpload", "s3:DeleteObject", "s3:ListMultipartUploadParts", "s3:GetObject", "s3:PutObject", "s3:RestoreObject" ], "Resource": [ "arn:aws:s3:::bucket_name/*" ] } ]}
Additional Information
Add your text here.
