Cloudflare Docs
Cloudflare Zero Trust
Edit this page on GitHub
Set theme to dark (⇧+D)

Protect access to Amazon S3 buckets with Cloudflare Zero Trust

This tutorial demonstrates how to secure access to Amazon S3 buckets with Cloudflare Zero Trust so that data in these buckets is not publicly exposed on the Internet. You can combine Cloudflare Access and AWS VPC endpoints. Enterprise may also use Cloudflare Gateway egress policies with dedicated egress IPs.

​​ Method 1: Via Cloudflare Access and VPC endpoints

​​ Prerequisites

​​ 1. Create a VPC endpoint in AWS

  1. In the AWS dashboard, go to Services > Networking & Content Delivery > VPC.
  2. Under Virtual private cloud, go to Endpoints.
  3. Select Create endpoint and name the endpoint.
  4. Choose AWS services as the service category.
  5. In Services, search and select the S3 service in the same region of the VPC. For example, for the AWS region Europe (London) - eu-west-2, the corresponding S3 service is named com.amazonaws.eu-west-2.s3 with a type of Gateway.
  6. In VPC, select your VPC that contains the EC2 VM hosting the Cloudflare tunnel daemon.
  7. In Route tables, select the route table associated with the VPC.
  8. In Policy, choose Full access.
  9. Select Create endpoint.

After you create the VPC endpoint, a new entry in the VPC route table with the target being your VPC endpoint. The entry will have the format vpce-xxxxxxxxxxxxxxxxx.

​​ 2. Set up a bucket policy for VPC access

  1. Go to Services > Storage > S3.
  2. In Amazon S3, go to Buckets > <your-S3-bucket> > Permissions.
  3. Disable Block all public access.
  4. In Bucket policy, add the following policy:
{
"Version": "2012-10-17",
"Id": "VPCe",
"Statement": [
{
"Sid": "VPCe",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::<your-S3-bucket01>",
"arn:aws:s3:::<your-S3-bucket01>/*"
],
"Condition": {
"StringEquals": {
"aws:SourceVpce": "<your-vpc-endpoint>"
}
}
}
]
}

Your bucket policy will allow your VPC to access your S3 bucket.

​​ 3. Enable static website hosting for the S3 bucket

  1. Return to Amazon S3, then go to Buckets > <your-S3-bucket01> > Properties.
  2. In Static website hosting, select Edit.
  3. Enable Static website hosting.
  4. Specify the Index and Error documents for the S3 bucket.
  5. Select Save changes.

A bucket website endpoint will be available at http://<your-S3-bucket01>.s3-website.<aws-region>.amazonaws.com. Because of the bucket policy, this website endpoint will only be accessible from the VPC with the VPC endpoint configured.

​​ 4. Add a new public hostname to the Cloudflare Tunnel

  1. In Zero Trust, go to Access > Tunnels
  2. Select your Tunnel, then select Configure.
  3. Go to Public Hostname, then select Add a public hostname.
  4. Enter a subdomain your organization will use to access the S3 bucket. For example, s3-bucket.<your-domain>.com.
  5. Under Service, choose HTTP for Type. In URL, enter <your-S3-bucket01>.s3-website.<aws-region>.amazonaws.com.
  6. In Additional application settings > HTTP Settings, input the HTTP Host Header as <your-S3-bucket01>.s3-website.<aws-region>.amazonaws.com.
  7. Select Save hostname.

Your Cloudflare Tunnel will terminate at the AWS VPC using your public hostname.

​​ 5. Restrict S3 access with an Access policy

  1. Go to Access > Applications. Select Add an application.
  2. Select Self-hosted.
  3. Enter a name for the application.
  4. In Application Domain, enter the public hostname used by your Tunnel. For example, s3-bucket.<your-domain>.com.
  5. (Optional) Create a service token to automatically authenticate access to your S3 bucket.
  6. Configure your application, then select Next.
  7. Add Access policies to determine which users and applications may access your bucket.
  8. Configure the settings per your organization’s requirements.
  9. Select Add application.

Users and applications that successfully authenticate via Cloudflare Access can access your S3 bucket at https://s3-bucket.<your-domain>.com.

​​ Method 2: Via Cloudflare Gateway egress policies

​​ Prerequisites

  • Cloudflare Zero Trust account with dedicated egress IPs
  • S3 bucket to be protected by Cloudflare Zero Trust

​​ 1. Set up a bucket policy to restrict access to a specific IP address

  1. In the AWS dashboard, go to Services > Storage > S3.
  2. Go to Buckets > <your-S3-bucket02> > Permissions.
  3. Disable Block all public access.
  4. In Bucket policy, add the following policy:
{
"Version": "2012-10-17",
"Id": "SourceIP",
"Statement": [
{
"Sid": "SourceIP",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::<your-S3-bucket02>",
"arn:aws:s3:::<your-S3-bucket02>/*"
],
"Condition": {
"IpAddress": {
"aws:SourceIp": "<your-dedicated-ip>/32"
}
}
}
]
}

​​ 2. Enable static website hosting for the S3 bucket

  1. Return to your bucket, then go to Properties.
  2. In Static website hosting, select Edit.
  3. Enable Static website hosting.
  4. Specify the Index and Error documents for the S3 bucket.
  5. Select Save changes.

A bucket website endpoint will be available at http://<your-S3-bucket02>.s3-website.<aws-region>.amazonaws.com. Because of the bucket policy, the website endpoint will only be accessible to traffic sourced from the dedicated egress IP specified.

​​ 3. Setup a dedicated egress IP policy

  1. In Zero Trust, go to Gateway > Egress Policies. Select Add a policy.
  2. Create a policy that specifies which proxied traffic Gateway should assign a dedicated egress IP to. For more information, refer to Egress policies.
  3. In Select an egress IP, choose Use dedicated Cloudflare egress IPs. Select the dedicated egress IP defined in your bucket policy.
  4. Select Create policy.

Traffic proxied by Gateway and assigned your specified egress IP can access your S3 bucket at http://<your-S3-bucket02>.s3-website.<aws-region>.amazonaws.com.