Ir al final de los metadatos
Ir al inicio de los metadatos

Estás viendo una versión antigua de esta página. Ve a la versión actual.

Comparar con el actual Ver el historial de la página

Versión 1 Actual »

In the following code, you will find an example of permission configuration to access AWS S3. The information you need to fill out is as follows:

  • {{BUTCKET-NAME}} → It is the name of the bucket where you want the backup files to be uploaded.

  • {{ARN-NUMBER}} → Identifier of the user who owns the Access Key ID and the Secret Access Key

  • {{USER-NAME}} → User who owns the Access Key ID and the Secret Access Key, It is usually an email.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "deny-public-create-delete-objects",
            "Effect": "Deny",
            "Principal": {
                "AWS": "*"
            },
            "Action": [
                "s3:DeleteObject",
                "s3:PutObject"
            ],
            "Resource": "arn:aws:s3:::{{BUTCKET-NAME}}/*",
            "Condition": {
                "ForAnyValue:ArnNotEquals": {
                    "aws:PrincipalArn": [
                        "arn:aws:iam::{{ARN-NUMBER}}:user/{{USER-NAME}}"
                    ]
                }
            }
        },
        {
            "Sid": "deny-public-bucket-access",
            "Effect": "Deny",
            "Principal": {
                "AWS": "*"
            },
            "Action": "s3:ListBucket",
            "Resource": "arn:aws:s3:::{{BUTCKET-NAME}}",
            "Condition": {
                "ForAnyValue:ArnNotEquals": {
                    "aws:PrincipalArn": [
                        "arn:aws:iam::{{ARN-NUMBER}}:user/{{USER-NAME}}"
                    ]
                }
            }
        },
        {
            "Sid": "allow-public-get-objects",
            "Effect": "Allow",
            "Principal": {
                "AWS": "*"
            },
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::{{BUTCKET-NAME}}/*"
        }
    ]
}
  • Sin etiquetas