AWS Security ChangesHomeSearch

AWS IAM documentation change

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

File: IAM/latest/UserGuide/reference_policies_elements_condition_operators.md

Summary

Removed JSON example policy using ForAllValues:ArnLike condition operator

Security assessment

Example removal appears to be documentation cleanup. No security context or vulnerability mentioned in the diff.

Diff

diff --git a/IAM/latest/UserGuide/reference_policies_elements_condition_operators.md b/IAM/latest/UserGuide/reference_policies_elements_condition_operators.md
index 5ea8edc51..513d413ae 100644
--- a//IAM/latest/UserGuide/reference_policies_elements_condition_operators.md
+++ b//IAM/latest/UserGuide/reference_policies_elements_condition_operators.md
@@ -964,28 +963,0 @@ The following example uses `ForAllValues:ArnLike` to create or update a logical
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Effect": "Allow",
-                "Principal": "*",
-                "Action": "logs:PutDeliverySource",
-                "Resource": "arn:aws::logs:us-east-1:123456789012:delivery-source:*",
-                "Condition": {
-                    "ForAllValues:ArnLike": {
-                        "logs:LogGeneratingResourceArns": [
-                            "arn:aws::cloudfront:123456789012:distribution/*",
-                            "arn:aws::cloudfront:123456789012:distribution/support*"
-                        ]
-                    }
-                }
-            }
-        ]
-    }
-    
-