Skip to main content
NetApp Knowledge Base

What IAM policy permissions does AltaVault need to access Amazon AWS S3 or Glacier?

Views:
173
Visibility:
Public
Votes:
0
Category:
altavault
Specialty:
legacy
Last Updated:

 

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.

 

NetApp provides no representations or warranties regarding the accuracy or reliability or serviceability of any information or recommendations provided in this publication or with respect to any results that may be obtained by the use of the information or observance of any recommendations provided herein. The information in this document is distributed AS IS and the use of this information or the implementation of any recommendations or techniques herein is a customer's responsibility and depends on the customer's ability to evaluate and integrate them into the customer's operational environment. This document and the information contained herein may be used solely in connection with the NetApp products discussed in this document.