Norwegian version of this page

Example policy - full access

{
     "Version": "2012-10-17",
     "Statement": [
         {
             "Sid": "AllowAllS3OperationsOnBucket",
            "Effect": "Allow",
            "Action": "s3:*",
             "Resource": [
                 "arn:aws:s3:::<bucket_name>",
                 "arn:aws:s3:::<bucket_name>/*"
             ],
             "Condition": {
                  "IpAddress": { 
                     "aws:SourceIp": [
                        "<IP 1>", 
                        "<IP 2>"
                   ]
                }
             }
         }
     ]
 }
Tags: S3, storage By Markus Sørensen
Published Oct. 3, 2023 3:48 PM - Last modified Feb. 9, 2024 3:48 PM