AWS Security ChangesHomeSearch

AWS redshift documentation change

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

File: redshift/latest/mgmt/serverless-connecting.md

Summary

Removed sample JSON resource policy for cross-VPC access configuration

Security assessment

Removal of example policy doesn't indicate a security fix but rather documentation cleanup. No evidence of addressing a vulnerability.

Diff

diff --git a/redshift/latest/mgmt/serverless-connecting.md b/redshift/latest/mgmt/serverless-connecting.md
index ca10499d2..c9efdc47b 100644
--- a//redshift/latest/mgmt/serverless-connecting.md
+++ b//redshift/latest/mgmt/serverless-connecting.md
@@ -225,39 +224,0 @@ This is a sample resource policy used to configure cross-VPC access:
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "CrossAccountCrossVPCAccess",
-                "Effect": "Allow",
-                "Principal": {
-                    "AWS": [
-                        "123456789012",
-                        "234567890123"
-                    ]
-                },
-                "Action": [
-                    "redshift-serverless:CreateEndpointAccess",
-                    "redshift-serverless:UpdateEndpointAccess",
-                    "redshift-serverless:DeleteEndpointAccess",
-                    "redshift-serverless:GetEndpointAccess"
-                ],
-                "Condition": {
-                    "ArnLike": {
-                        "redshift-serverless:AuthorizedVpc": [
-                            "arn:aws:ec2:us-east-1:123456789012:vpc/*",
-                            "arn:aws:ec2:us-east-1:234567890123:vpc/vpc-456",
-                            "arn:aws:ec2:us-east-1:234567890123:vpc/vpc-987"
-                        ]
-                    }
-                }
-            }
-        ]
-    }
-    
-