AWS lookoutmetrics documentation change
Summary
Removed RDS-related IAM policy examples
Security assessment
Removal of specific RDS and Secrets Manager policy examples without security context. Appears to be content reduction rather than security-related change.
Diff
diff --git a/lookoutmetrics/latest/dev/services-rds.md b/lookoutmetrics/latest/dev/services-rds.md index debd21577..221f7382b 100644 --- a//lookoutmetrics/latest/dev/services-rds.md +++ b//lookoutmetrics/latest/dev/services-rds.md @@ -128,36 +127,0 @@ The GitHub repository for this guide provides [sample IAM policies](https://gith - - { - "Version": "2012-10-17", - "Statement": [ - { - "Action": [ - "rds:DescribeDBInstances" - ], - "Resource": [ - "arn:aws:rds:${Region}:${Account}:db:${DatabaseId}" - ], - "Effect": "Allow" - }, - { - "Action": [ - "rds:DescribeDBSubnetGroups" - ], - "Resource": "arn:aws:rds:${Region}:${Account}:subgrp:*", - "Effect": "Allow" - }, - { - "Action": [ - "secretsmanager:GetSecretValue" - ], - "Resource": [ - "arn:aws:secretsmanager:${Region}:${Account}:secret:${SecretId}" - ], - "Effect": "Allow", - "Condition": { - "ForAllValues:StringEquals": { - "secretsmanager:VersionStage": "AWSCURRENT" - } - } - }, - ... -