AWS wellarchitected documentation change
Summary
Removed detailed S3 bucket policy JSON example for SSL enforcement
Security assessment
Removal of a configuration example does not indicate a security issue or add security documentation. The recommendation to enforce SSL remains intact.
Diff
diff --git a/wellarchitected/latest/healthcare-industry-lens/data-protection.md b/wellarchitected/latest/healthcare-industry-lens/data-protection.md index c2db9c3e4..9c34f9685 100644 --- a//wellarchitected/latest/healthcare-industry-lens/data-protection.md +++ b//wellarchitected/latest/healthcare-industry-lens/data-protection.md @@ -53,0 +54,7 @@ Amazon S3 buckets that may contain health data should be configured to require s +JSON + + +**** + + + @@ -55,21 +61,0 @@ Amazon S3 buckets that may contain health data should be configured to require s - { - "Id": "ExamplePolicy", - "Version": "2012-10-17", - "Statement": [ - { - "Sid": "AllowSSLRequestsOnly", - "Action": "s3:*", - "Effect": "Deny", - "Resource": [ - "arn:aws:s3:::DOC-EXAMPLE-BUCKET", - "arn:aws:s3:::DOC-EXAMPLE-BUCKET/*" - ], - "Condition": { - "Bool": { - "aws:SecureTransport": "false" - } - }, - "Principal": "*" - } - ] - }