AWS Security ChangesHomeSearch

AWS ebs documentation change

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

File: ebs/latest/userguide/recycle-bin-working-with-snaps.md

Summary

Removed JSON policy example for snapshot Recycle Bin operations and tag management

Security assessment

Documentation cleanup of policy examples without security context. No evidence of security fixes.

Diff

diff --git a/ebs/latest/userguide/recycle-bin-working-with-snaps.md b/ebs/latest/userguide/recycle-bin-working-with-snaps.md
index c8a20f753..a2fb38ae3 100644
--- a//ebs/latest/userguide/recycle-bin-working-with-snaps.md
+++ b//ebs/latest/userguide/recycle-bin-working-with-snaps.md
@@ -46,34 +45,0 @@ The following is an example IAM policy. It includes the `ec2:DescribeTags` permi
-JSON
-    
-
-****
-    
-    
-    
-    {
-      "Version": "2012-10-17",
-      "Statement": [
-        {
-          "Sid": "AllowRecycleBinSnapshotOperations",
-          "Effect": "Allow",
-          "Action": [
-            "ec2:ListSnapshotsInRecycleBin",
-            "ec2:RestoreSnapshotFromRecycleBin"
-          ],
-          "Resource": "arn:aws:ec2:*::snapshot/*"
-        },
-        {
-          "Sid": "AllowSnapshotTagOperations",
-          "Effect": "Allow",
-          "Action": [
-            "ec2:CreateTags",
-            "ec2:DeleteTags",
-            "ec2:DescribeTags"
-          ],
-          "Resource": "arn:aws:ec2:*:account-id:snapshot/*"
-        }
-      ]
-    }
-    
-    
-