AWS datatransferterminal documentation change
Summary
Removed example IAM policy enforcing TLS for S3 access
Security assessment
Removal of an example policy reduces clarity on secure transport enforcement but does not directly indicate a security issue or add security documentation.
Diff
diff --git a/datatransferterminal/latest/userguide/data-protection.md b/datatransferterminal/latest/userguide/data-protection.md index c03894440..064f2df7e 100644 --- a//datatransferterminal/latest/userguide/data-protection.md +++ b//datatransferterminal/latest/userguide/data-protection.md @@ -47,19 +46,0 @@ For example, use only encrypted connections over HTTPS (TLS) by using the [`aws: - { - "Version": "2012-10-17", - "Statement": [{ - "Sid": "RestrictToTLSRequestsOnly", - "Action": "s3:", - "Effect": "Deny", - "Resource": [ - "arn:aws:s3:::amzn-s3-demo-bucket", - "arn:aws:s3:::amzn-s3-demo-bucket/" - ], - "Condition": { - "Bool": { - "aws:SecureTransport": "false" - } - }, - "Principal": "*" - }] - } -