AWS Security ChangesHomeSearch

AWS AmazonS3 documentation change

Service: AmazonS3 · 2025-08-28 · Documentation low

File: AmazonS3/latest/s3-outposts/S3Outposts-example-bucket-policies.md

Summary

Removed example bucket policy with IP-based access controls for S3 Outposts

Security assessment

The change removes an example policy but doesn't explicitly address a security vulnerability. While IP-based policies are security-related, the removal itself doesn't indicate a security fix.

Diff

diff --git a/AmazonS3/latest/s3-outposts/S3Outposts-example-bucket-policies.md b/AmazonS3/latest/s3-outposts/S3Outposts-example-bucket-policies.md
index d0a04e84f..c1adf6675 100644
--- a//AmazonS3/latest/s3-outposts/S3Outposts-example-bucket-policies.md
+++ b//AmazonS3/latest/s3-outposts/S3Outposts-example-bucket-policies.md
@@ -92,39 +91,0 @@ Replace the IP address ranges in this example with appropriate values for your u
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Id": "S3OutpostsPolicyId2",
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "AllowIPmix",
-                "Effect": "Allow",
-                "Principal": "*",
-                "Action": "s3-outposts:*",
-                "Resource": [            
-                    "arn:aws:s3-outposts:region:111122223333:outpost/OUTPOSTS-ID/bucket/amzn-s3-demo-bucket",
-                    "arn:aws:s3-outposts:region:111122223333:outpost/OUTPOSTS-ID/bucket/amzn-s3-demo-bucket/*"
-                ],
-                "Condition": {
-                    "IpAddress": {
-                        "aws:SourceIp": [
-                            "192.0.2.0/24",
-                            "2001:DB8:1234:5678::/64"
-                        ]
-                    },
-                    "NotIpAddress": {
-                        "aws:SourceIp": [
-                            "203.0.113.0/24",
-                            "2001:DB8:1234:5678:ABCD::/80"
-                        ]
-                    }
-                }
-            }
-        ]
-    }
-    
-