AWS iot-sitewise documentation change
Summary
Removed JSON policy example demonstrating tag-based access control for AWS IoT SiteWise
Security assessment
Deletion of a policy example showing resource tagging conditions. No indication this was addressing a vulnerability. Impacts documentation utility but not security functionality.
Diff
diff --git a/iot-sitewise/latest/userguide/security_iam_id-based-policy-examples.md b/iot-sitewise/latest/userguide/security_iam_id-based-policy-examples.md index 1bd0c973c..6a3dce218 100644 --- a//iot-sitewise/latest/userguide/security_iam_id-based-policy-examples.md +++ b//iot-sitewise/latest/userguide/security_iam_id-based-policy-examples.md @@ -136,34 +135,0 @@ Use conditions in your identity-based policy to control access to AWS IoT SiteWi -JSON - - -**** - - - - { - "Version": "2012-10-17", - "Statement": [ - { - "Sid": "ListAllAssets", - "Effect": "Allow", - "Action": [ - ":ListAssets", - ":ListAssociatedAssets" - ], - "Resource": "*" - }, - { - "Sid": "DescribeAssetIfOwner", - "Effect": "Allow", - "Action": ":DescribeAsset", - "Resource": "arn:aws::*:*:asset/*", - "Condition": { - "StringEquals": { - "aws:ResourceTag/Owner": "${aws:username}" - } - } - } - ] - } - -