Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Perform following to update S3 bucket access in transit encryption :

  1. Login to the AWS Management Console at https://console.aws.amazon.com.

  2. Navigate to s3 console.

  3. In the navigation pane,  select buckets.

  4. Click on the bucket to be modified, click permissions.

  5. Choose Bucket Policy.

  6. If there is no existing bucket policy for a bucket define one with json:

    Code Block
    { "Version": "2012-10-17", "Statement": [{ "Effect": "Deny", "Principal": { "AWS": "*" }, "Action": "s3:*", "Resource": [ "arn:aws:s3:::[Bucket-Name]", "arn:aws:s3:::[Bucket-Name]/*" ], "Condition": { "Bool": { "aws:SecureTransport": "false" } } }] } 
  7. If there is already a bucket policy, in Statement section append json mentioned below:

    Code Block
    { "Effect": "Deny", "Principal": { "AWS": "*" }, "Action": "s3:*", "Resource": [ "arn:aws:s3:::[Bucket-Name]", "arn:aws:s3:::[Bucket-Name]/*" ], "Condition": { "Bool": { "aws:SecureTransport": "false" } } } 
  8. Choose Save.

...